├── MapboxTableViewDemo.xcodeproj ├── project.pbxproj └── xcuserdata │ └── incanus.xcuserdatad │ └── xcschemes │ ├── MapboxTableViewDemo.xcscheme │ └── xcschememanagement.plist ├── MapboxTableViewDemo ├── AppDelegate.swift ├── Info.plist ├── LaunchScreen.xib ├── Settings.bundle │ ├── Root.plist │ └── en.lproj │ │ └── Root.strings ├── TableViewController.swift └── airports.geojson ├── Podfile ├── README.md ├── sample.png ├── screenshot.png └── video.mp4 /MapboxTableViewDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | DD71EEEE19BA64BA00D68BB1 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD71EEED19BA64BA00D68BB1 /* AppDelegate.swift */; }; 11 | DD885EFC1B96B045006994C4 /* Settings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = DD885EFB1B96B045006994C4 /* Settings.bundle */; }; 12 | DD885EFE1B96B116006994C4 /* TableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD885EFD1B96B116006994C4 /* TableViewController.swift */; }; 13 | DD885F021B96BF9D006994C4 /* airports.geojson in Resources */ = {isa = PBXBuildFile; fileRef = DD885F011B96BF9D006994C4 /* airports.geojson */; }; 14 | DD885F321B96C3EB006994C4 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = DD885F311B96C3EB006994C4 /* LaunchScreen.xib */; }; 15 | E6A63B72EFAA6654302A7AFC /* Pods.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A085C068CF12B47FEE40EBE7 /* Pods.framework */; settings = {ATTRIBUTES = (Weak, ); }; }; 16 | /* End PBXBuildFile section */ 17 | 18 | /* Begin PBXFileReference section */ 19 | 6671EE60462F6807D43FCBC4 /* Pods.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.debug.xcconfig; path = "Pods/Target Support Files/Pods/Pods.debug.xcconfig"; sourceTree = ""; }; 20 | A085C068CF12B47FEE40EBE7 /* Pods.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 21 | CE0AB16600DA973DB5D41F26 /* Pods.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.release.xcconfig; path = "Pods/Target Support Files/Pods/Pods.release.xcconfig"; sourceTree = ""; }; 22 | DD71EEE819BA64BA00D68BB1 /* MapboxTableViewDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = MapboxTableViewDemo.app; sourceTree = BUILT_PRODUCTS_DIR; }; 23 | DD71EEEC19BA64BA00D68BB1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 24 | DD71EEED19BA64BA00D68BB1 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 25 | DD885EFB1B96B045006994C4 /* Settings.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = Settings.bundle; sourceTree = ""; }; 26 | DD885EFD1B96B116006994C4 /* TableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TableViewController.swift; sourceTree = ""; }; 27 | DD885F011B96BF9D006994C4 /* airports.geojson */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = airports.geojson; sourceTree = ""; }; 28 | DD885F311B96C3EB006994C4 /* LaunchScreen.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LaunchScreen.xib; sourceTree = ""; }; 29 | /* End PBXFileReference section */ 30 | 31 | /* Begin PBXFrameworksBuildPhase section */ 32 | DD71EEE519BA64BA00D68BB1 /* Frameworks */ = { 33 | isa = PBXFrameworksBuildPhase; 34 | buildActionMask = 2147483647; 35 | files = ( 36 | E6A63B72EFAA6654302A7AFC /* Pods.framework in Frameworks */, 37 | ); 38 | runOnlyForDeploymentPostprocessing = 0; 39 | }; 40 | /* End PBXFrameworksBuildPhase section */ 41 | 42 | /* Begin PBXGroup section */ 43 | 0E5AD8934C563271FC037D2B /* Frameworks */ = { 44 | isa = PBXGroup; 45 | children = ( 46 | A085C068CF12B47FEE40EBE7 /* Pods.framework */, 47 | ); 48 | name = Frameworks; 49 | sourceTree = ""; 50 | }; 51 | 50F4E2D8414BEC77FEFC8962 /* Pods */ = { 52 | isa = PBXGroup; 53 | children = ( 54 | 6671EE60462F6807D43FCBC4 /* Pods.debug.xcconfig */, 55 | CE0AB16600DA973DB5D41F26 /* Pods.release.xcconfig */, 56 | ); 57 | name = Pods; 58 | sourceTree = ""; 59 | }; 60 | DD71EEDF19BA64BA00D68BB1 = { 61 | isa = PBXGroup; 62 | children = ( 63 | DD71EEEA19BA64BA00D68BB1 /* MapboxTableViewDemo */, 64 | DD71EEE919BA64BA00D68BB1 /* Products */, 65 | 50F4E2D8414BEC77FEFC8962 /* Pods */, 66 | 0E5AD8934C563271FC037D2B /* Frameworks */, 67 | ); 68 | sourceTree = ""; 69 | }; 70 | DD71EEE919BA64BA00D68BB1 /* Products */ = { 71 | isa = PBXGroup; 72 | children = ( 73 | DD71EEE819BA64BA00D68BB1 /* MapboxTableViewDemo.app */, 74 | ); 75 | name = Products; 76 | sourceTree = ""; 77 | }; 78 | DD71EEEA19BA64BA00D68BB1 /* MapboxTableViewDemo */ = { 79 | isa = PBXGroup; 80 | children = ( 81 | DD71EEED19BA64BA00D68BB1 /* AppDelegate.swift */, 82 | DD885EFD1B96B116006994C4 /* TableViewController.swift */, 83 | DD885F011B96BF9D006994C4 /* airports.geojson */, 84 | DD71EEEB19BA64BA00D68BB1 /* Supporting Files */, 85 | ); 86 | path = MapboxTableViewDemo; 87 | sourceTree = ""; 88 | }; 89 | DD71EEEB19BA64BA00D68BB1 /* Supporting Files */ = { 90 | isa = PBXGroup; 91 | children = ( 92 | DD71EEEC19BA64BA00D68BB1 /* Info.plist */, 93 | DD885F311B96C3EB006994C4 /* LaunchScreen.xib */, 94 | DD885EFB1B96B045006994C4 /* Settings.bundle */, 95 | ); 96 | name = "Supporting Files"; 97 | sourceTree = ""; 98 | }; 99 | /* End PBXGroup section */ 100 | 101 | /* Begin PBXNativeTarget section */ 102 | DD71EEE719BA64BA00D68BB1 /* MapboxTableViewDemo */ = { 103 | isa = PBXNativeTarget; 104 | buildConfigurationList = DD71EF0419BA64BA00D68BB1 /* Build configuration list for PBXNativeTarget "MapboxTableViewDemo" */; 105 | buildPhases = ( 106 | 23D766BFF405EA1E33C2FE3D /* Check Pods Manifest.lock */, 107 | DD71EEE419BA64BA00D68BB1 /* Sources */, 108 | DD71EEE519BA64BA00D68BB1 /* Frameworks */, 109 | DD71EEE619BA64BA00D68BB1 /* Resources */, 110 | 128A682EB7C2419A7FE4CDA9 /* Embed Pods Frameworks */, 111 | 4CC6108E4BD8D93996969669 /* Copy Pods Resources */, 112 | ); 113 | buildRules = ( 114 | ); 115 | dependencies = ( 116 | ); 117 | name = MapboxTableViewDemo; 118 | productName = MapboxTableViewDemo; 119 | productReference = DD71EEE819BA64BA00D68BB1 /* MapboxTableViewDemo.app */; 120 | productType = "com.apple.product-type.application"; 121 | }; 122 | /* End PBXNativeTarget section */ 123 | 124 | /* Begin PBXProject section */ 125 | DD71EEE019BA64BA00D68BB1 /* Project object */ = { 126 | isa = PBXProject; 127 | attributes = { 128 | LastUpgradeCheck = 0600; 129 | ORGANIZATIONNAME = Mapbox; 130 | TargetAttributes = { 131 | DD71EEE719BA64BA00D68BB1 = { 132 | CreatedOnToolsVersion = 6.0; 133 | }; 134 | }; 135 | }; 136 | buildConfigurationList = DD71EEE319BA64BA00D68BB1 /* Build configuration list for PBXProject "MapboxTableViewDemo" */; 137 | compatibilityVersion = "Xcode 3.2"; 138 | developmentRegion = English; 139 | hasScannedForEncodings = 0; 140 | knownRegions = ( 141 | en, 142 | Base, 143 | ); 144 | mainGroup = DD71EEDF19BA64BA00D68BB1; 145 | productRefGroup = DD71EEE919BA64BA00D68BB1 /* Products */; 146 | projectDirPath = ""; 147 | projectRoot = ""; 148 | targets = ( 149 | DD71EEE719BA64BA00D68BB1 /* MapboxTableViewDemo */, 150 | ); 151 | }; 152 | /* End PBXProject section */ 153 | 154 | /* Begin PBXResourcesBuildPhase section */ 155 | DD71EEE619BA64BA00D68BB1 /* Resources */ = { 156 | isa = PBXResourcesBuildPhase; 157 | buildActionMask = 2147483647; 158 | files = ( 159 | DD885F021B96BF9D006994C4 /* airports.geojson in Resources */, 160 | DD885F321B96C3EB006994C4 /* LaunchScreen.xib in Resources */, 161 | DD885EFC1B96B045006994C4 /* Settings.bundle in Resources */, 162 | ); 163 | runOnlyForDeploymentPostprocessing = 0; 164 | }; 165 | /* End PBXResourcesBuildPhase section */ 166 | 167 | /* Begin PBXShellScriptBuildPhase section */ 168 | 128A682EB7C2419A7FE4CDA9 /* Embed Pods Frameworks */ = { 169 | isa = PBXShellScriptBuildPhase; 170 | buildActionMask = 2147483647; 171 | files = ( 172 | ); 173 | inputPaths = ( 174 | ); 175 | name = "Embed Pods Frameworks"; 176 | outputPaths = ( 177 | ); 178 | runOnlyForDeploymentPostprocessing = 0; 179 | shellPath = /bin/sh; 180 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods/Pods-frameworks.sh\"\n"; 181 | showEnvVarsInLog = 0; 182 | }; 183 | 23D766BFF405EA1E33C2FE3D /* Check Pods Manifest.lock */ = { 184 | isa = PBXShellScriptBuildPhase; 185 | buildActionMask = 2147483647; 186 | files = ( 187 | ); 188 | inputPaths = ( 189 | ); 190 | name = "Check Pods Manifest.lock"; 191 | outputPaths = ( 192 | ); 193 | runOnlyForDeploymentPostprocessing = 0; 194 | shellPath = /bin/sh; 195 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; 196 | showEnvVarsInLog = 0; 197 | }; 198 | 4CC6108E4BD8D93996969669 /* Copy Pods Resources */ = { 199 | isa = PBXShellScriptBuildPhase; 200 | buildActionMask = 2147483647; 201 | files = ( 202 | ); 203 | inputPaths = ( 204 | ); 205 | name = "Copy Pods Resources"; 206 | outputPaths = ( 207 | ); 208 | runOnlyForDeploymentPostprocessing = 0; 209 | shellPath = /bin/sh; 210 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods/Pods-resources.sh\"\n"; 211 | showEnvVarsInLog = 0; 212 | }; 213 | /* End PBXShellScriptBuildPhase section */ 214 | 215 | /* Begin PBXSourcesBuildPhase section */ 216 | DD71EEE419BA64BA00D68BB1 /* Sources */ = { 217 | isa = PBXSourcesBuildPhase; 218 | buildActionMask = 2147483647; 219 | files = ( 220 | DD885EFE1B96B116006994C4 /* TableViewController.swift in Sources */, 221 | DD71EEEE19BA64BA00D68BB1 /* AppDelegate.swift in Sources */, 222 | ); 223 | runOnlyForDeploymentPostprocessing = 0; 224 | }; 225 | /* End PBXSourcesBuildPhase section */ 226 | 227 | /* Begin XCBuildConfiguration section */ 228 | DD71EF0219BA64BA00D68BB1 /* Debug */ = { 229 | isa = XCBuildConfiguration; 230 | buildSettings = { 231 | ALWAYS_SEARCH_USER_PATHS = NO; 232 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 233 | CLANG_CXX_LIBRARY = "libc++"; 234 | CLANG_ENABLE_MODULES = YES; 235 | CLANG_ENABLE_OBJC_ARC = YES; 236 | CLANG_WARN_BOOL_CONVERSION = YES; 237 | CLANG_WARN_CONSTANT_CONVERSION = YES; 238 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 239 | CLANG_WARN_EMPTY_BODY = YES; 240 | CLANG_WARN_ENUM_CONVERSION = YES; 241 | CLANG_WARN_INT_CONVERSION = YES; 242 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 243 | CLANG_WARN_UNREACHABLE_CODE = YES; 244 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 245 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 246 | COPY_PHASE_STRIP = NO; 247 | ENABLE_STRICT_OBJC_MSGSEND = YES; 248 | GCC_C_LANGUAGE_STANDARD = gnu99; 249 | GCC_DYNAMIC_NO_PIC = NO; 250 | GCC_OPTIMIZATION_LEVEL = 0; 251 | GCC_PREPROCESSOR_DEFINITIONS = ( 252 | "DEBUG=1", 253 | "$(inherited)", 254 | ); 255 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 256 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 257 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 258 | GCC_WARN_UNDECLARED_SELECTOR = YES; 259 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 260 | GCC_WARN_UNUSED_FUNCTION = YES; 261 | GCC_WARN_UNUSED_VARIABLE = YES; 262 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 263 | MTL_ENABLE_DEBUG_INFO = YES; 264 | ONLY_ACTIVE_ARCH = YES; 265 | SDKROOT = iphoneos; 266 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 267 | TARGETED_DEVICE_FAMILY = "1,2"; 268 | }; 269 | name = Debug; 270 | }; 271 | DD71EF0319BA64BA00D68BB1 /* Release */ = { 272 | isa = XCBuildConfiguration; 273 | buildSettings = { 274 | ALWAYS_SEARCH_USER_PATHS = NO; 275 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 276 | CLANG_CXX_LIBRARY = "libc++"; 277 | CLANG_ENABLE_MODULES = YES; 278 | CLANG_ENABLE_OBJC_ARC = YES; 279 | CLANG_WARN_BOOL_CONVERSION = YES; 280 | CLANG_WARN_CONSTANT_CONVERSION = YES; 281 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 282 | CLANG_WARN_EMPTY_BODY = YES; 283 | CLANG_WARN_ENUM_CONVERSION = YES; 284 | CLANG_WARN_INT_CONVERSION = YES; 285 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 286 | CLANG_WARN_UNREACHABLE_CODE = YES; 287 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 288 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 289 | COPY_PHASE_STRIP = YES; 290 | ENABLE_NS_ASSERTIONS = NO; 291 | ENABLE_STRICT_OBJC_MSGSEND = YES; 292 | GCC_C_LANGUAGE_STANDARD = gnu99; 293 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 294 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 295 | GCC_WARN_UNDECLARED_SELECTOR = YES; 296 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 297 | GCC_WARN_UNUSED_FUNCTION = YES; 298 | GCC_WARN_UNUSED_VARIABLE = YES; 299 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 300 | MTL_ENABLE_DEBUG_INFO = NO; 301 | SDKROOT = iphoneos; 302 | TARGETED_DEVICE_FAMILY = "1,2"; 303 | VALIDATE_PRODUCT = YES; 304 | }; 305 | name = Release; 306 | }; 307 | DD71EF0519BA64BA00D68BB1 /* Debug */ = { 308 | isa = XCBuildConfiguration; 309 | baseConfigurationReference = 6671EE60462F6807D43FCBC4 /* Pods.debug.xcconfig */; 310 | buildSettings = { 311 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 312 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 313 | INFOPLIST_FILE = MapboxTableViewDemo/Info.plist; 314 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 315 | PRODUCT_NAME = "$(TARGET_NAME)"; 316 | }; 317 | name = Debug; 318 | }; 319 | DD71EF0619BA64BA00D68BB1 /* Release */ = { 320 | isa = XCBuildConfiguration; 321 | baseConfigurationReference = CE0AB16600DA973DB5D41F26 /* Pods.release.xcconfig */; 322 | buildSettings = { 323 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 324 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 325 | INFOPLIST_FILE = MapboxTableViewDemo/Info.plist; 326 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 327 | PRODUCT_NAME = "$(TARGET_NAME)"; 328 | }; 329 | name = Release; 330 | }; 331 | /* End XCBuildConfiguration section */ 332 | 333 | /* Begin XCConfigurationList section */ 334 | DD71EEE319BA64BA00D68BB1 /* Build configuration list for PBXProject "MapboxTableViewDemo" */ = { 335 | isa = XCConfigurationList; 336 | buildConfigurations = ( 337 | DD71EF0219BA64BA00D68BB1 /* Debug */, 338 | DD71EF0319BA64BA00D68BB1 /* Release */, 339 | ); 340 | defaultConfigurationIsVisible = 0; 341 | defaultConfigurationName = Release; 342 | }; 343 | DD71EF0419BA64BA00D68BB1 /* Build configuration list for PBXNativeTarget "MapboxTableViewDemo" */ = { 344 | isa = XCConfigurationList; 345 | buildConfigurations = ( 346 | DD71EF0519BA64BA00D68BB1 /* Debug */, 347 | DD71EF0619BA64BA00D68BB1 /* Release */, 348 | ); 349 | defaultConfigurationIsVisible = 0; 350 | defaultConfigurationName = Release; 351 | }; 352 | /* End XCConfigurationList section */ 353 | }; 354 | rootObject = DD71EEE019BA64BA00D68BB1 /* Project object */; 355 | } 356 | -------------------------------------------------------------------------------- /MapboxTableViewDemo.xcodeproj/xcuserdata/incanus.xcuserdatad/xcschemes/MapboxTableViewDemo.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 39 | 40 | 41 | 42 | 51 | 53 | 59 | 60 | 61 | 62 | 63 | 64 | 70 | 72 | 78 | 79 | 80 | 81 | 83 | 84 | 87 | 88 | 89 | -------------------------------------------------------------------------------- /MapboxTableViewDemo.xcodeproj/xcuserdata/incanus.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | MapboxTableViewDemo.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | DD71EEE719BA64BA00D68BB1 16 | 17 | primary 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /MapboxTableViewDemo/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | @UIApplicationMain 4 | 5 | class AppDelegate: UIResponder, UIApplicationDelegate { 6 | 7 | var window: UIWindow? 8 | 9 | func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { 10 | window = UIWindow(frame: UIScreen.mainScreen().bounds) 11 | window!.rootViewController = TableViewController() 12 | window!.makeKeyAndVisible() 13 | 14 | return true 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /MapboxTableViewDemo/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | com.mapbox.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | MGLMapboxAccessToken 26 | pk.eyJ1IjoianVzdGluIiwiYSI6IlpDbUJLSUEifQ.4mG8vhelFMju6HpIY-Hi5A 27 | UILaunchStoryboardName 28 | LaunchScreen 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UISupportedInterfaceOrientations~ipad 40 | 41 | UIInterfaceOrientationPortrait 42 | UIInterfaceOrientationPortraitUpsideDown 43 | UIInterfaceOrientationLandscapeLeft 44 | UIInterfaceOrientationLandscapeRight 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /MapboxTableViewDemo/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 20 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /MapboxTableViewDemo/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | Title 9 | Privacy Settings 10 | Type 11 | PSGroupSpecifier 12 | FooterText 13 | This setting allows the application to share anonymized location and usage data with Mapbox. 14 | 15 | 16 | DefaultValue 17 | 18 | Key 19 | MGLMapboxMetricsEnabled 20 | Title 21 | Mapbox Metrics 22 | Type 23 | PSToggleSwitchSpecifier 24 | TrueValue 25 | 26 | FalseValue 27 | 28 | 29 | 30 | StringsTable 31 | Root 32 | 33 | 34 | -------------------------------------------------------------------------------- /MapboxTableViewDemo/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/MapboxTableViewDemo/159d08db83c28b681c4bb87a93228f9203a0499f/MapboxTableViewDemo/Settings.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /MapboxTableViewDemo/TableViewController.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Mapbox 3 | 4 | class TableViewController: UITableViewController { 5 | 6 | let identifier = "MapboxCell" 7 | var points = [CLLocationCoordinate2D]() 8 | var totalMaps = 0 9 | 10 | override func viewDidLoad() { 11 | super.viewDidLoad() 12 | 13 | tableView.registerClass(NSClassFromString("UITableViewCell"), forCellReuseIdentifier: identifier) 14 | 15 | if let path = NSBundle.mainBundle().pathForResource("airports", ofType: "geojson"), 16 | let geojson = NSData(contentsOfFile: path), 17 | let airports = NSJSONSerialization.JSONObjectWithData(geojson, options: nil, error: nil) as? NSDictionary, 18 | let features = airports["features"] as? [NSDictionary] { 19 | for feature in features { 20 | if let geometry = feature["geometry"] as? NSDictionary, 21 | let coordinates = geometry["coordinates"] as? [Double] { 22 | points.append(CLLocationCoordinate2D(latitude: coordinates[1], longitude: coordinates[0])) 23 | } 24 | } 25 | } 26 | } 27 | 28 | override func numberOfSectionsInTableView(tableView: UITableView) -> Int { 29 | return 1 30 | } 31 | 32 | override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 33 | return 100 34 | } 35 | 36 | override func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat { 37 | return 200 38 | } 39 | 40 | override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { 41 | var cell: UITableViewCell! 42 | 43 | if let reusableCell = tableView.dequeueReusableCellWithIdentifier(identifier, forIndexPath: indexPath) as? UITableViewCell { 44 | cell = reusableCell 45 | 46 | cell.layer.borderColor = UIColor.redColor().colorWithAlphaComponent(0.5).CGColor 47 | cell.layer.borderWidth = 10 48 | } 49 | 50 | var map: MGLMapView! 51 | 52 | if let existingMap = cell.viewWithTag(1) { 53 | map = existingMap as! MGLMapView 54 | } else { 55 | map = MGLMapView(frame: cell.bounds) 56 | map.logoView.hidden = true 57 | map.attributionButton.hidden = true 58 | map.userInteractionEnabled = false 59 | map.tag = 1 60 | cell.addSubview(map) 61 | totalMaps++ 62 | } 63 | 64 | map.setCenterCoordinate(points[indexPath.row], zoomLevel: 12, animated: false) 65 | 66 | println("cell: \(indexPath.row) of \(self.tableView(tableView, numberOfRowsInSection: 0)), total maps: \(totalMaps)") 67 | 68 | return cell 69 | } 70 | 71 | } 72 | -------------------------------------------------------------------------------- /MapboxTableViewDemo/airports.geojson: -------------------------------------------------------------------------------- 1 | {"type":"FeatureCollection","data_attributes":null,"calculation_params":null,"title":"Department of Transportation (DOT) Bureau of Transportation Statistics, United States (USA) Airport Locations, USA, 2001","count":901,"icon_link":null,"extent":[-176.646,17.7019,174.114,71.2854],"geometry_types":["point"],"unique_name":null,"feature_count":901,"link":"http://geocommons.com/overlays/10.json","next_feature":null,"features":[{"properties":{"Total Enpl":1420073.0,"State0":"ID","Landing Fa":"BOI","id":"a61zr1acn7x4","Name0":"Boise Air Terminal/Gowen Field","County0":"Ada County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-116.2227783,43.5644455]}},{"properties":{"Total Enpl":1305.0,"State0":"MO","Landing Fa":"IRK","id":"a61zr14wwvg0","Name0":"Kirksville Regional","County0":"Adair County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-92.54496765,40.09364319]}},{"properties":{"Total Enpl":11415.0,"State0":"IL","Landing Fa":"UIN","id":"a61zr19ppmym","Name0":"Quincy Regional-Baldwin Field","County0":"Adams County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-91.19445801,39.94262314]}},{"properties":{"Total Enpl":6052.0,"State0":"PR","Landing Fa":"BQN","id":"a61zr12also2","Name0":"Rafael Hernandez","County0":"Aguadilla Municipio"},"type":"Feature","geometry":{"type":"Point","coordinates":[-67.12944794,18.4948616]}},{"properties":{"Total Enpl":152087.0,"State0":"FL","Landing Fa":"GNV","id":"a61zr1bfm97v","Name0":"Gainesville Regional","County0":"Alachua County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-82.27177429,29.69005585]}},{"properties":{"Total Enpl":4850517.0,"State0":"CA","Landing Fa":"OAK","id":"a61zr1hp12fk","Name0":"Metropolitan Oakland International","County0":"Alameda County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.2207184,37.72129059]}},{"properties":{"Total Enpl":4298.0,"State0":"CO","Landing Fa":"ALS","id":"a61zr1fsxw0f","Name0":"San Luis Valley Regional/Bergman Field","County0":"Alamosa County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-105.8665543,37.43491745]}},{"properties":{"Total Enpl":11589.0,"State0":"WY","Landing Fa":"LAR","id":"a61zr19tkbeu","Name0":"Laramie Regional","County0":"Albany County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-105.6749878,41.31204987]}},{"properties":{"Total Enpl":1140518.0,"State0":"NY","Landing Fa":"ALB","id":"a61zr15ei6k0","Name0":"Albany International","County0":"Albany County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80297852,42.74811935]}},{"properties":{"Total Enpl":171150.0,"State0":"VA","Landing Fa":"CHO","id":"a61zr12qj5g9","Name0":"Charlottesville-Albemarle","County0":"Albemarle County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-78.45285797,38.13863754]}},{"properties":{"Total Enpl":9909.0,"State0":"AK","Landing Fa":"CDB","id":"a61zr15fobf2","Name0":"Cold Bay","County0":"Aleutians East Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-162.7242584,55.20560074]}},{"properties":{"Total Enpl":2313.0,"State0":"AK","Landing Fa":"KQA","id":"a61zr1hjympe","Name0":"Akutan","County0":"Aleutians East Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-165.7853088,54.13246536]}},{"properties":{"Total Enpl":2777.0,"State0":"AK","Landing Fa":"KVC","id":"a61zr1gy7tvt","Name0":"King Cove","County0":"Aleutians East Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-162.2662201,55.11634827]}},{"properties":{"Total Enpl":498.0,"State0":"AK","Landing Fa":"KFP","id":"a61zr1i046ha","Name0":"False Pass","County0":"Aleutians East Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-163.4103241,54.84744644]}},{"properties":{"Total Enpl":4366.0,"State0":"AK","Landing Fa":"SDP","id":"a61zr12lkbdz","Name0":"Sand Point","County0":"Aleutians East Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-160.5177002,55.31502914]}},{"properties":{"Total Enpl":2698.0,"State0":"AK","Landing Fa":"ADK","id":"a61zr13qbdgv","Name0":"Adak Naval Air Facility","County0":"Aleutians West Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-176.6460266,51.87796402]}},{"properties":{"Total Enpl":1187.0,"State0":"AK","Landing Fa":"SYA","id":"a61zr1bg9d9h","Name0":"Eareckson Air Station","County0":"Aleutians West Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[174.1136169,52.71227646]}},{"properties":{"Total Enpl":397.0,"State0":"AK","Landing Fa":"AKA","id":"a61zr1ghfj5g","Name0":"Atka","County0":"Aleutians West Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-174.2063446,52.22034836]}},{"properties":{"Total Enpl":4712.0,"State0":"AK","Landing Fa":"SNP","id":"a61zr1d1dd2l","Name0":"Saint Paul Island","County0":"Aleutians West Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-170.2204437,57.1673317]}},{"properties":{"Total Enpl":31988.0,"State0":"AK","Landing Fa":"DUT","id":"a61zr1crnsht","Name0":"Unalaska","County0":"Aleutians West Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-166.5435028,53.90013885]}},{"properties":{"Total Enpl":1007.0,"State0":"AK","Landing Fa":"PBV","id":"a61zr1i2ph8a","Name0":"Saint George","County0":"Aleutians West Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-169.6637421,56.57735443]}},{"properties":{"Total Enpl":9302650.0,"State0":"PA","Landing Fa":"PIT","id":"a61zr1ek271k","Name0":"Pittsburgh International","County0":"Allegheny County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-80.23287201,40.49146652]}},{"properties":{"Total Enpl":322.0,"State0":"PA","Landing Fa":"AGC","id":"a61zr1501aup","Name0":"Allegheny County","County0":"Allegheny County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-79.93016815,40.35440063]}},{"properties":{"Total Enpl":346784.0,"State0":"IN","Landing Fa":"FWA","id":"a61zr1a26ppf","Name0":"Fort Wayne International","County0":"Allen County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-85.19514465,40.97846603]}},{"properties":{"Total Enpl":599.0,"State0":"OH","Landing Fa":"AOH","id":"a61zr12t9bvb","Name0":"Lima Allen County","County0":"Allen County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-84.02666473,40.70694351]}},{"properties":{"Total Enpl":521.0,"State0":"LA","Landing Fa":"L42","id":"a61zr1hp8pbc","Name0":"Allen Parish","County0":"Allen Parish"},"type":"Feature","geometry":{"type":"Point","coordinates":[-92.68846893,30.75016594]}},{"properties":{"Total Enpl":10263.0,"State0":"MI","Landing Fa":"APN","id":"a61zr1b39vvj","Name0":"Alpena County Regional","County0":"Alpena County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-83.56028748,45.07806778]}},{"properties":{"Total Enpl":2420.0,"State0":"AK","Landing Fa":"AQY","id":"a61zr1adgbf7","Name0":"Girdwood","County0":"Anchorage Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-149.1257935,60.96609497]}},{"properties":{"Total Enpl":2104.0,"State0":"AK","Landing Fa":"EDF","id":"a61zr12lkphw","Name0":"Elmendorf Air Force Base","County0":"Anchorage Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-149.793869,61.2530632]}},{"properties":{"Total Enpl":2240.0,"State0":"AK","Landing Fa":"MRI","id":"a61zr1gn3cu6","Name0":"Merrill Field","County0":"Anchorage Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-149.8461609,61.21437836]}},{"properties":{"Total Enpl":26733.0,"State0":"AK","Landing Fa":"LHD","id":"a61zr1du2piz","Name0":"Lake Hood","County0":"Anchorage Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-149.9719391,61.18000412]}},{"properties":{"Total Enpl":2536319.0,"State0":"AK","Landing Fa":"ANC","id":"a61zr1c81pos","Name0":"Ted Stevens Anchorage International","County0":"Anchorage Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-149.9961853,61.17432022]}},{"properties":{"Total Enpl":8681738.0,"State0":"MD","Landing Fa":"BWI","id":"a61zr1hjimds","Name0":"Baltimore-Washington International","County0":"Anne Arundel County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-76.66819763,39.17540359]}},{"properties":{"Total Enpl":287.0,"State0":"AZ","Landing Fa":"RQE","id":"a61zr1eb7dl0","Name0":"Window Rock","County0":"Apache County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-109.0673904,35.65205383]}},{"properties":{"Total Enpl":530.0,"State0":"CO","Landing Fa":"APA","id":"a61zr1dt5u7v","Name0":"Centennial","County0":"Arapahoe County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-104.8492966,39.57012939]}},{"properties":{"Total Enpl":7166772.0,"State0":"VA","Landing Fa":"DCA","id":"a61zr1b8845k","Name0":"Ronald Reagan Washington National","County0":"Arlington County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-77.03771973,38.85208511]}},{"properties":{"Total Enpl":28626.0,"State0":"ME","Landing Fa":"PQI","id":"a61zr136iqfy","Name0":"Northern Maine Regional Airport At Presque Isle","County0":"Aroostook County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-68.0447998,46.68896103]}},{"properties":{"Total Enpl":486.0,"State0":"ME","Landing Fa":"FVE","id":"a61zr12jiylx","Name0":"Northern Aroostook Regional","County0":"Aroostook County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-68.31275177,47.28550339]}},{"properties":{"Total Enpl":481998.0,"State0":"NJ","Landing Fa":"ACY","id":"a61zr1gy53sn","Name0":"Atlantic City International","County0":"Atlantic County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-74.5771637,39.45758438]}},{"properties":{"Total Enpl":16494.0,"State0":"VA","Landing Fa":"SHD","id":"a61zr13q2c3p","Name0":"Shenandoah Valley Regional","County0":"Augusta County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-78.8964386,38.26384354]}},{"properties":{"Total Enpl":346.0,"State0":"AL","Landing Fa":"4R4","id":"a61zr1cha3d7","Name0":"Fairhope Municipal","County0":"Baldwin County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-87.87802124,30.46211243]}},{"properties":{"Total Enpl":208508.0,"State0":"MA","Landing Fa":"HYA","id":"a61zr1cjqv32","Name0":"Barnstable Municipal-Boardman/Polando Field","County0":"Barnstable County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-70.28035736,41.66933823]}},{"properties":{"Total Enpl":15925.0,"State0":"MA","Landing Fa":"PVC","id":"a61zr1fa1y1o","Name0":"Provincetown Municipal","County0":"Barnstable County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-70.22137451,42.0719986]}},{"properties":{"Total Enpl":3029.0,"State0":"KS","Landing Fa":"GBD","id":"a61zr15azabs","Name0":"Great Bend Municipal","County0":"Barton County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-98.85916901,38.34441757]}},{"properties":{"Total Enpl":4340.0,"State0":"AR","Landing Fa":"BPK","id":"a61zr1ab55xf","Name0":"Baxter County Regional","County0":"Baxter County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-92.47052765,36.36894226]}},{"properties":{"Total Enpl":164426.0,"State0":"FL","Landing Fa":"PFN","id":"a61zr1ihqwi6","Name0":"Panama City-Bay County International","County0":"Bay County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-85.68280792,30.21208382]}},{"properties":{"Total Enpl":887.0,"State0":"FL","Landing Fa":"PAM","id":"a61zr17ee43q","Name0":"Tyndall Air Force Base","County0":"Bay County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-85.57649231,30.06996346]}},{"properties":{"Total Enpl":3480.0,"State0":"SD","Landing Fa":"HON","id":"a61zr1ew1awd","Name0":"Huron Regional","County0":"Beadle County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-98.22854614,44.3852005]}},{"properties":{"Total Enpl":100194.0,"State0":"SC","Landing Fa":"HXD","id":"a61zr1fydd3l","Name0":"Hilton Head","County0":"Beaufort County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-80.69747162,32.22436142]}},{"properties":{"Total Enpl":260.0,"State0":"PA","Landing Fa":"HMZ","id":"a61zr13w9xr6","Name0":"Bedford County","County0":"Bedford County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-78.51221466,40.08536911]}},{"properties":{"Total Enpl":19888.0,"State0":"TX","Landing Fa":"GRK","id":"a61zr1a4oins","Name0":"Robert Gray Army Air Field","County0":"Bell County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-97.82779694,31.06489754]}},{"properties":{"Total Enpl":90418.0,"State0":"TX","Landing Fa":"ILE","id":"a61zr1adbjew","Name0":"Killeen Municipal","County0":"Bell County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-97.68650055,31.0858326]}},{"properties":{"Total Enpl":29457.0,"State0":"MN","Landing Fa":"BJI","id":"a61zr14101qa","Name0":"Bemidji-Beltrami County","County0":"Beltrami County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-94.93372345,47.5094223]}},{"properties":{"Total Enpl":320438.0,"State0":"AR","Landing Fa":"XNA","id":"a61zr1ccza4w","Name0":"Northwest Arkansas Regional","County0":"Benton County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-94.30680847,36.28186798]}},{"properties":{"Total Enpl":1120.0,"State0":"OR","Landing Fa":"CVO","id":"a61zr13rr912","Name0":"Corvallis Municipal","County0":"Benton County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-123.2898331,44.49719238]}},{"properties":{"Total Enpl":384.0,"State0":"AR","Landing Fa":"ROG","id":"a61zr1cpsesh","Name0":"Rogers Municipal-Carter Field","County0":"Benton County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-94.10687256,36.37229538]}},{"properties":{"Total Enpl":10433.0,"State0":"NJ","Landing Fa":"TEB","id":"a61zr1b52zqu","Name0":"Teterboro","County0":"Bergen County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-74.06083679,40.85010147]}},{"properties":{"Total Enpl":52519.0,"State0":"PA","Landing Fa":"RDG","id":"a61zr1d1eu3q","Name0":"Reading Regional/Carl A. Spaatz Field","County0":"Berks County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-75.96524811,40.37850189]}},{"properties":{"Total Enpl":3137931.0,"State0":"NM","Landing Fa":"ABQ","id":"a61zr12h1no1","Name0":"Albuquerque International Sunport","County0":"Bernalillo County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-106.6091919,35.04022217]}},{"properties":{"Total Enpl":5513.0,"State0":"MI","Landing Fa":"BEH","id":"a61zr1gaao3p","Name0":"Southwest Michigan Regional","County0":"Berrien County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-86.42849731,42.128582]}},{"properties":{"Total Enpl":1666.0,"State0":"AK","Landing Fa":"AQH","id":"a61zr19dvor3","Name0":"Quinhagak","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-161.8794861,59.7570076]}},{"properties":{"Total Enpl":2293.0,"State0":"AK","Landing Fa":"KWT","id":"a61zr156qoi4","Name0":"Kwethluk","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-161.445343,60.80425262]}},{"properties":{"Total Enpl":2439.0,"State0":"AK","Landing Fa":"Z09","id":"a61zr1chkahd","Name0":"Kasigluk","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-162.5248108,60.87202072]}},{"properties":{"Total Enpl":3342.0,"State0":"AK","Landing Fa":"A61","id":"a61zr1db7pxt","Name0":"Tuntutuliak","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-162.6670074,60.33534622]}},{"properties":{"Total Enpl":748.0,"State0":"AK","Landing Fa":"PKA","id":"a61zr199zhu9","Name0":"Napaskiak","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-161.7767334,60.70368958]}},{"properties":{"Total Enpl":2502.0,"State0":"AK","Landing Fa":"16A","id":"a61zr1hdmw9f","Name0":"Nunapitchuk","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-162.4391174,60.90582657]}},{"properties":{"Total Enpl":3047.0,"State0":"AK","Landing Fa":"A85","id":"a61zr18xydq0","Name0":"Kwigillingok","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-163.1675568,59.87644958]}},{"properties":{"Total Enpl":3349.0,"State0":"AK","Landing Fa":"DUY","id":"a61zr16xonuj","Name0":"Kongiganak","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-162.8817291,59.95950699]}},{"properties":{"Total Enpl":1408.0,"State0":"AK","Landing Fa":"EEK","id":"a61zr1ba4tpz","Name0":"Eek","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-162.0056152,60.21590424]}},{"properties":{"Total Enpl":2775.0,"State0":"AK","Landing Fa":"TLT","id":"a61zr1busamy","Name0":"Tuluksak","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-160.9684143,61.09676361]}},{"properties":{"Total Enpl":1954.0,"State0":"AK","Landing Fa":"MYU","id":"a61zr19datjx","Name0":"Mekoryuk","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-166.2706146,60.37142181]}},{"properties":{"Total Enpl":2065.0,"State0":"AK","Landing Fa":"4A2","id":"a61zr1ergms4","Name0":"Atmautluak","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-162.2731323,60.866745]}},{"properties":{"Total Enpl":671.0,"State0":"AK","Landing Fa":"SLQ","id":"a61zr1c2kvq3","Name0":"Sleetmute","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-157.1557007,61.70931244]}},{"properties":{"Total Enpl":1826.0,"State0":"AK","Landing Fa":"4KA","id":"a61zr161nyj7","Name0":"Tununak","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-165.2731323,60.57559586]}},{"properties":{"Total Enpl":1596.0,"State0":"AK","Landing Fa":"GNU","id":"a61zr12v64vp","Name0":"Goodnews","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-161.5813904,59.11727524]}},{"properties":{"Total Enpl":720.0,"State0":"AK","Landing Fa":"CJX","id":"a61zr16jmw4r","Name0":"Crooked Creek","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-158.1371155,61.86902237]}},{"properties":{"Total Enpl":510.0,"State0":"AK","Landing Fa":"PTU","id":"a61zr1ik553m","Name0":"Platinum","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-161.8196716,59.01135635]}},{"properties":{"Total Enpl":2250.0,"State0":"AK","Landing Fa":"KKI","id":"a61zr19hmf1c","Name0":"Akiachak","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-161.4350739,60.90786362]}},{"properties":{"Total Enpl":1683.0,"State0":"AK","Landing Fa":"WWT","id":"a61zr13w1010","Name0":"Newtok","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-164.6562195,60.92365265]}},{"properties":{"Total Enpl":4677.0,"State0":"AK","Landing Fa":"IIK","id":"a61zr1gfiimx","Name0":"Kipnuk","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-164.0305176,59.93295288]}},{"properties":{"Total Enpl":3049.0,"State0":"AK","Landing Fa":"CFK","id":"a61zr1cg1gsv","Name0":"Chefornak","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-164.2856293,60.14922714]}},{"properties":{"Total Enpl":1537.0,"State0":"AK","Landing Fa":"IGT","id":"a61zr1hrvxxo","Name0":"Nightmute","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-164.6856384,60.47032547]}},{"properties":{"Total Enpl":1236.0,"State0":"AK","Landing Fa":"WNA","id":"a61zr18kyrq9","Name0":"Napakiak","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-161.9695129,60.69118881]}},{"properties":{"Total Enpl":125885.0,"State0":"AK","Landing Fa":"BET","id":"a61zr1g2658y","Name0":"Bethel","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-161.8379974,60.77977753]}},{"properties":{"Total Enpl":16471.0,"State0":"AK","Landing Fa":"ANI","id":"a61zr15f8ida","Name0":"Aniak","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-159.543045,61.58159637]}},{"properties":{"Total Enpl":4549.0,"State0":"AK","Landing Fa":"KLG","id":"a61zr16f6sxm","Name0":"Kalskag","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-160.3413239,61.53627396]}},{"properties":{"Total Enpl":3938.0,"State0":"AK","Landing Fa":"OOK","id":"a61zr16a2a2l","Name0":"Toksook Bay","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-165.1139679,60.53337479]}},{"properties":{"Total Enpl":250.0,"State0":"AK","Landing Fa":"RDV","id":"a61zr15b1c32","Name0":"Red Devil","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-157.3479309,61.78764343]}},{"properties":{"Total Enpl":1373.0,"State0":"AK","Landing Fa":"AKI","id":"a61zr1e7fuae","Name0":"Akiak","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-161.2270203,60.90481186]}},{"properties":{"Total Enpl":347.0,"State0":"AK","Landing Fa":"SRV","id":"a61zr1egxwmj","Name0":"Stony River 2","County0":"Bethel Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-156.5881805,61.78987503]}},{"properties":{"Total Enpl":3403544.0,"State0":"TX","Landing Fa":"SAT","id":"a61zr1fp2p79","Name0":"San Antonio International","County0":"Bexar County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-98.46977997,29.53369522]}},{"properties":{"Total Enpl":30207.0,"State0":"GA","Landing Fa":"MCN","id":"a61zr1bsl670","Name0":"Middle Georgia Regional","County0":"Bibb County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-83.64920807,32.69284821]}},{"properties":{"Total Enpl":58904.0,"State0":"IA","Landing Fa":"ALO","id":"a61zr19vklrq","Name0":"Waterloo Municipal","County0":"Black Hawk County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-92.40034485,42.55708313]}},{"properties":{"Total Enpl":67632.0,"State0":"ID","Landing Fa":"SUN","id":"a61zr1ay4cic","Name0":"Friedman Memorial","County0":"Blaine County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-114.2965927,43.50484085]}},{"properties":{"Total Enpl":16969.0,"State0":"PA","Landing Fa":"AOO","id":"a61zr1ezo91c","Name0":"Altoona-Blair County","County0":"Blair County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-78.32002258,40.29637146]}},{"properties":{"Total Enpl":878737.0,"State0":"TN","Landing Fa":"TYS","id":"a61zr1calgu7","Name0":"McGhee Tyson","County0":"Blount County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-83.99285889,35.81248856]}},{"properties":{"Total Enpl":120699.0,"State0":"ID","Landing Fa":"IDA","id":"a61zr16fnnq4","Name0":"Fanning Field","County0":"Bonneville County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0701675,43.51455688]}},{"properties":{"Total Enpl":10863290.0,"State0":"KY","Landing Fa":"CVG","id":"a61zr1hpzly3","Name0":"Cincinnati/Northern Kentucky International","County0":"Boone County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-84.66217041,39.04614258]}},{"properties":{"Total Enpl":26268.0,"State0":"MO","Landing Fa":"COU","id":"a61zr13pbrpp","Name0":"Columbia Regional","County0":"Boone County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-92.21962738,38.81809235]}},{"properties":{"Total Enpl":1900.0,"State0":"AR","Landing Fa":"HRO","id":"a61zr1eqhdev","Name0":"Boone County","County0":"Boone County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-93.15473175,36.26152039]}},{"properties":{"Total Enpl":374.0,"State0":"LA","Landing Fa":"BAD","id":"a61zr128d7tj","Name0":"Barksdale Air Force Base","County0":"Bossier Parish"},"type":"Feature","geometry":{"type":"Point","coordinates":[-93.66267395,32.50181961]}},{"properties":{"Total Enpl":1497.0,"State0":"NE","Landing Fa":"AIA","id":"a61zr19cf7t1","Name0":"Alliance Municipal","County0":"Box Butte County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-102.8037186,42.05324936]}},{"properties":{"Total Enpl":689.0,"State0":"TX","Landing Fa":"LVJ","id":"a61zr1gjkzd6","Name0":"Clover Field","County0":"Brazoria County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-95.24216461,29.52130508]}},{"properties":{"Total Enpl":1000.0,"State0":"TX","Landing Fa":"07TA","id":"a61zr1hnnx4n","Name0":"Salaika Aviation","County0":"Brazoria County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-95.3446579,29.24051857]}},{"properties":{"Total Enpl":6039.0,"State0":"TX","Landing Fa":"LBX","id":"a61zr1fgqyzn","Name0":"Brazoria County","County0":"Brazoria County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-95.46208191,29.10863876]}},{"properties":{"Total Enpl":93005.0,"State0":"TX","Landing Fa":"CLL","id":"a61zr1b7pfqs","Name0":"Easterwood Field","County0":"Brazos County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-96.36382294,30.58858871]}},{"properties":{"Total Enpl":273813.0,"State0":"FL","Landing Fa":"MLB","id":"a61zr14ds4rz","Name0":"Melbourne International","County0":"Brevard County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-80.64580536,28.10275078]}},{"properties":{"Total Enpl":355.0,"State0":"FL","Landing Fa":"XMR","id":"a61zr19dw79k","Name0":"Cape Canaveral As Skid Strip","County0":"Brevard County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-80.56643677,28.46750069]}},{"properties":{"Total Enpl":891.0,"State0":"FL","Landing Fa":"COF","id":"a61zr15m2s4x","Name0":"Patrick Air Force Base","County0":"Brevard County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-80.60755157,28.23945427]}},{"properties":{"Total Enpl":1176.0,"State0":"AK","Landing Fa":"WSN","id":"a61zr195vhye","Name0":"South Naknek Nr 2","County0":"Bristol Bay Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-157.008255,58.70343781]}},{"properties":{"Total Enpl":487.0,"State0":"AK","Landing Fa":"4AK9","id":"a61zr1a23an8","Name0":"Tibbetts","County0":"Bristol Bay Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-157.0071411,58.73426819]}},{"properties":{"Total Enpl":48743.0,"State0":"AK","Landing Fa":"AKN","id":"a61zr1fxo7zb","Name0":"King Salmon","County0":"Bristol Bay Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-156.6492157,58.67680359]}},{"properties":{"Total Enpl":23790.0,"State0":"MA","Landing Fa":"EWB","id":"a61zr177zkr0","Name0":"New Bedford Regional","County0":"Bristol County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-70.9569397,41.67613983]}},{"properties":{"Total Enpl":1623.0,"State0":"SD","Landing Fa":"BKX","id":"a61zr1946jal","Name0":"Brookings Municipal","County0":"Brookings County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-96.81694794,44.30483246]}},{"properties":{"Total Enpl":136305.0,"State0":"NY","Landing Fa":"BGM","id":"a61zr18saw7e","Name0":"Binghamton Regional/Edwin A. Link Field","County0":"Broome County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-75.97961426,42.20848465]}},{"properties":{"Total Enpl":304.0,"State0":"FL","Landing Fa":"FXE","id":"a61zr1gfufbu","Name0":"Fort Lauderdale Executive","County0":"Broward County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-80.1707077,26.19728088]}},{"properties":{"Total Enpl":6932142.0,"State0":"FL","Landing Fa":"FLL","id":"a61zr1cip274","Name0":"Fort Lauderdale/Hollywood International","County0":"Broward County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-80.15274811,26.07258415]}},{"properties":{"Total Enpl":25365.0,"State0":"SD","Landing Fa":"ABR","id":"a61zr16gohl3","Name0":"Aberdeen Regional","County0":"Brown County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-98.42183685,45.44905472]}},{"properties":{"Total Enpl":1699.0,"State0":"TX","Landing Fa":"BWD","id":"a61zr1753jv5","Name0":"Brownwood Regional","County0":"Brown County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-98.95649719,31.79362297]}},{"properties":{"Total Enpl":352886.0,"State0":"WI","Landing Fa":"GRB","id":"a61zr14ckqic","Name0":"Austin Straubel International","County0":"Brown County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-88.1295929,44.48507309]}},{"properties":{"Total Enpl":800.0,"State0":"PA","Landing Fa":"DYL","id":"a61zr1g9s4j3","Name0":"Doylestown","County0":"Bucks County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-75.12233734,40.33304977]}},{"properties":{"Total Enpl":7720.0,"State0":"NE","Landing Fa":"EAR","id":"a61zr1hsgp6u","Name0":"Kearney Municipal","County0":"Buffalo County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-99.0067749,40.72702789]}},{"properties":{"Total Enpl":283144.0,"State0":"NC","Landing Fa":"AVL","id":"a61zr13m9vaq","Name0":"Asheville Regional","County0":"Buncombe County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-82.54180908,35.43619537]}},{"properties":{"Total Enpl":129327.0,"State0":"ND","Landing Fa":"BIS","id":"a61zr1g73wpl","Name0":"Bismarck Municipal","County0":"Burleigh County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-100.7467194,46.7741127]}},{"properties":{"Total Enpl":2533.0,"State0":"NJ","Landing Fa":"WRI","id":"a61zr1ajonb9","Name0":"McGuire Air Force Base","County0":"Burlington County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-74.5934906,40.01567078]}},{"properties":{"Total Enpl":30004.0,"State0":"CA","Landing Fa":"CIC","id":"a61zr12c1aa9","Name0":"Chico Municipal","County0":"Butte County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-121.8584213,39.79538345]}},{"properties":{"Total Enpl":375785.0,"State0":"LA","Landing Fa":"SHV","id":"a61zr1bi7wr9","Name0":"Shreveport Regional","County0":"Caddo Parish"},"type":"Feature","geometry":{"type":"Point","coordinates":[-93.82559967,32.44662857]}},{"properties":{"Total Enpl":76263.0,"State0":"LA","Landing Fa":"LCH","id":"a61zr1bs2qxt","Name0":"Lake Charles Regional","County0":"Calcasieu Parish"},"type":"Feature","geometry":{"type":"Point","coordinates":[-93.22340393,30.12609673]}},{"properties":{"Total Enpl":452.0,"State0":"MI","Landing Fa":"BTL","id":"a61zr1c4eqje","Name0":"W. K. Kellogg","County0":"Calhoun County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-85.2514801,42.30727768]}},{"properties":{"Total Enpl":568.0,"State0":"MO","Landing Fa":"JEF","id":"a61zr1dcgtol","Name0":"Jefferson City Memorial","County0":"Callaway County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-92.15614319,38.59117889]}},{"properties":{"Total Enpl":20899.0,"State0":"PA","Landing Fa":"JST","id":"a61zr12qldgu","Name0":"Johnstown-Cambria County","County0":"Cambria County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-78.83394623,40.31611252]}},{"properties":{"Total Enpl":71949.0,"State0":"TX","Landing Fa":"BRO","id":"a61zr1gjz04j","Name0":"Brownsville/South Padre Island International","County0":"Cameron County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-97.42585754,25.90683174]}},{"properties":{"Total Enpl":470170.0,"State0":"TX","Landing Fa":"HRL","id":"a61zr12off8f","Name0":"Valley International","County0":"Cameron County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-97.65439606,26.22850609]}},{"properties":{"Total Enpl":15356.0,"State0":"WY","Landing Fa":"GCC","id":"a61zr12gz0ra","Name0":"Gillette-Campbell County","County0":"Campbell County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-105.53936,44.34889984]}},{"properties":{"Total Enpl":85822.0,"State0":"VA","Landing Fa":"LYH","id":"a61zr158r09a","Name0":"Lynchburg Regional/Preston Glenn Field","County0":"Campbell County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-79.20043182,37.32668686]}},{"properties":{"Total Enpl":1717.0,"State0":"WY","Landing Fa":"RWL","id":"a61zr13hlbls","Name0":"Rawlins Municipal","County0":"Carbon County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-107.1999435,41.80559921]}},{"properties":{"Total Enpl":4760643.0,"State0":"PR","Landing Fa":"SJU","id":"a61zr1fyrm21","Name0":"Luis Munoz Marin International","County0":"Carolina Municipio"},"type":"Feature","geometry":{"type":"Point","coordinates":[-66.00183105,18.43941689]}},{"properties":{"Total Enpl":1055.0,"State0":"NV","Landing Fa":"CXP","id":"a61zr1i4m6wb","Name0":"Carson","County0":"Carson City"},"type":"Feature","geometry":{"type":"Point","coordinates":[-119.7343597,39.19223022]}},{"properties":{"Total Enpl":138705.0,"State0":"MT","Landing Fa":"GTF","id":"a61zr17m0emk","Name0":"Great Falls International","County0":"Cascade County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-111.3706818,47.48200226]}},{"properties":{"Total Enpl":226385.0,"State0":"ND","Landing Fa":"FAR","id":"a61zr1gkwpv5","Name0":"Hector International","County0":"Cass County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-96.81498718,46.91934967]}},{"properties":{"Total Enpl":21532.0,"State0":"NC","Landing Fa":"HKY","id":"a61zr1iari1b","Name0":"Hickory Regional","County0":"Catawba County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.38426208,35.74028397]}},{"properties":{"Total Enpl":1108.0,"State0":"PR","Landing Fa":"NRR","id":"a61zr16ryf0n","Name0":"Roosevelt Roads Naval Station-Ofstie Field","County0":"Ceiba Municipio"},"type":"Feature","geometry":{"type":"Point","coordinates":[-65.6333313,18.25]}},{"properties":{"Total Enpl":126945.0,"State0":"PA","Landing Fa":"UNV","id":"a61zr1ay7j5r","Name0":"University Park","County0":"Centre County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-77.84869385,40.8492775]}},{"properties":{"Total Enpl":13477.0,"State0":"IA","Landing Fa":"MCW","id":"a61zr1bfmy3d","Name0":"Mason City Municipal","County0":"Cerro Gordo County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-93.33126068,43.15779114]}},{"properties":{"Total Enpl":133845.0,"State0":"IL","Landing Fa":"CMI","id":"a61zr16xc3nf","Name0":"University Of Illinois-Willard","County0":"Champaign County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-88.27805328,40.03924942]}},{"properties":{"Total Enpl":785882.0,"State0":"SC","Landing Fa":"CHS","id":"a61zr1gxes8o","Name0":"Charleston Air Force Base/International","County0":"Charleston County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-80.04050446,32.89864731]}},{"properties":{"Total Enpl":12072.0,"State0":"GA","Landing Fa":"SVN","id":"a61zr143tq88","Name0":"Hunter Army Air Field","County0":"Chatham County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.14566803,32.009655]}},{"properties":{"Total Enpl":763905.0,"State0":"GA","Landing Fa":"SAV","id":"a61zr1cyxh5i","Name0":"Savannah International","County0":"Chatham County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.20214081,32.12758255]}},{"properties":{"Total Enpl":4074.0,"State0":"GA","Landing Fa":"LSF","id":"a61zr1dn8a19","Name0":"Lawson Army Air Field","County0":"Chattahoochee County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-84.99214935,32.33792496]}},{"properties":{"Total Enpl":20827.0,"State0":"NY","Landing Fa":"JHW","id":"a61zr1a6eqji","Name0":"Chautauqua County/Jamestown","County0":"Chautauqua County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-79.25803375,42.1533699]}},{"properties":{"Total Enpl":18832.0,"State0":"NM","Landing Fa":"ROW","id":"a61zr1d3a2h5","Name0":"Roswell Industrial Air Center","County0":"Chaves County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-104.5305557,33.30155563]}},{"properties":{"Total Enpl":972.0,"State0":"MI","Landing Fa":"Y15","id":"a61zr1b8uc3c","Name0":"Cheboygan County","County0":"Cheboygan County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-84.51927185,45.65370941]}},{"properties":{"Total Enpl":108124.0,"State0":"NY","Landing Fa":"ELM","id":"a61zr14twqd0","Name0":"Elmira/Corning Regional","County0":"Chemung County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-76.89144135,42.15991211]}},{"properties":{"Total Enpl":1732.0,"State0":"NY","Landing Fa":"OIC","id":"a61zr15dj59i","Name0":"Lt. Warren Eaton","County0":"Chenango County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-75.52410889,42.56655502]}},{"properties":{"Total Enpl":265.0,"State0":"PA","Landing Fa":"40N","id":"a61zr15a19xx","Name0":"Chester County G. O. Carlson","County0":"Chester County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-75.86547089,39.97897339]}},{"properties":{"Total Enpl":20611.0,"State0":"WI","Landing Fa":"EAU","id":"a61zr16epauc","Name0":"Chippewa Valley Regional","County0":"Chippewa County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-91.48506927,44.86525726]}},{"properties":{"Total Enpl":14937.0,"State0":"MI","Landing Fa":"CIU","id":"a61zr189k4gi","Name0":"Chippewa County International","County0":"Chippewa County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-84.47238159,46.2507515]}},{"properties":{"Total Enpl":434111.0,"State0":"VT","Landing Fa":"BTV","id":"a61zr188fmbs","Name0":"Burlington International","County0":"Chittenden County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-73.15031433,44.47300339]}},{"properties":{"Total Enpl":3213.0,"State0":"KY","Landing Fa":"HOP","id":"a61zr14y7jeh","Name0":"Campbell Army Air Field","County0":"Christian County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-87.49167633,36.67282486]}},{"properties":{"Total Enpl":410.0,"State0":"NV","Landing Fa":"NFL","id":"a61zr18jfj7m","Name0":"Fallon Naval Air Station/Van Voorhis Field","County0":"Churchill County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-118.7009811,39.41658401]}},{"properties":{"Total Enpl":28201.0,"State0":"WA","Landing Fa":"CLM","id":"a61zr19b370c","Name0":"William R. Fairchild International","County0":"Clallam County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-123.4996948,48.12019348]}},{"properties":{"Total Enpl":16055319.0,"State0":"NV","Landing Fa":"LAS","id":"a61zr17fzybi","Name0":"McCarran International","County0":"Clark County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1523361,36.08036041]}},{"properties":{"Total Enpl":42139.0,"State0":"NV","Landing Fa":"61B","id":"a61zr1czperx","Name0":"Boulder City Municipal","County0":"Clark County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-114.8610992,35.94747925]}},{"properties":{"Total Enpl":2476.0,"State0":"NV","Landing Fa":"LSV","id":"a61zr14t70o5","Name0":"Nellis Air Force Base","County0":"Clark County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0344467,36.23580551]}},{"properties":{"Total Enpl":107433.0,"State0":"NV","Landing Fa":"VGT","id":"a61zr1es0ryo","Name0":"North Las Vegas","County0":"Clark County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1957474,36.21166611]}},{"properties":{"Total Enpl":111487.0,"State0":"NV","Landing Fa":"L15","id":"a61zr159v1mp","Name0":"Henderson","County0":"Clark County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1327744,35.97636414]}},{"properties":{"Total Enpl":11234.0,"State0":"GA","Landing Fa":"AHN","id":"a61zr1cpej6l","Name0":"Athens/Ben Epps","County0":"Clarke County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-83.32634735,33.94859695]}},{"properties":{"Total Enpl":6258.0,"State0":"IA","Landing Fa":"SPW","id":"a61zr19gnw4v","Name0":"Spencer Municipal","County0":"Clay County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-95.20280457,43.16552734]}},{"properties":{"Total Enpl":1550.0,"State0":"MO","Landing Fa":"MKC","id":"a61zr1dym3uu","Name0":"Kansas City Downtown","County0":"Clay County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-94.59273529,39.12324142]}},{"properties":{"Total Enpl":38136866.0,"State0":"GA","Landing Fa":"ATL","id":"a61zr1gtz9p8","Name0":"The William B. Hartsfield Atlanta International","County0":"Clayton County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-84.42694092,33.64044571]}},{"properties":{"Total Enpl":370081.0,"State0":"MI","Landing Fa":"LAN","id":"a61zr1iibcy5","Name0":"Capital City","County0":"Clinton County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-84.58735657,42.77870178]}},{"properties":{"Total Enpl":12138.0,"State0":"NY","Landing Fa":"PLB","id":"a61zr1a7rj3i","Name0":"Clinton County","County0":"Clinton County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-73.52452087,44.68751907]}},{"properties":{"Total Enpl":2048.0,"State0":"GA","Landing Fa":"MGE","id":"a61zr1etsu6j","Name0":"Dobbins Air Reserve Base","County0":"Cobb County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-84.51631927,33.91538239]}},{"properties":{"Total Enpl":7005.0,"State0":"AZ","Landing Fa":"FHU","id":"a61zr14by0br","Name0":"Sierra Vista Municipal-Libby Army Air Field","County0":"Cochise County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-110.3443909,31.58847237]}},{"properties":{"Total Enpl":582388.0,"State0":"AZ","Landing Fa":"GCN","id":"a61zr1i595a2","Name0":"Grand Canyon National Park","County0":"Coconino County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-112.146965,35.95235443]}},{"properties":{"Total Enpl":4289.0,"State0":"AZ","Landing Fa":"AZ03","id":"a61zr1am9blf","Name0":"Cliff Dwellers Lodge","County0":"Coconino County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-111.7526627,36.73443222]}},{"properties":{"Total Enpl":33978.0,"State0":"AZ","Landing Fa":"FLG","id":"a61zr1943o3f","Name0":"Flagstaff Pulliam","County0":"Coconino County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-111.6712189,35.13845444]}},{"properties":{"Total Enpl":23979.0,"State0":"AZ","Landing Fa":"PGA","id":"a61zr18mlgy3","Name0":"Page Municipal","County0":"Coconino County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-111.4483643,36.92610931]}},{"properties":{"Total Enpl":9324.0,"State0":"SD","Landing Fa":"ATY","id":"a61zr18v6rz7","Name0":"Watertown Municipal","County0":"Codington County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-97.15471649,44.91398239]}},{"properties":{"Total Enpl":8770.0,"State0":"AL","Landing Fa":"MSL","id":"a61zr18bvvlt","Name0":"Northwest Alabama Regional","County0":"Colbert County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-87.61022949,34.74531937]}},{"properties":{"Total Enpl":903.0,"State0":"IL","Landing Fa":"MTO","id":"a61zr1cqpbev","Name0":"Coles County Memorial","County0":"Coles County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-88.27923584,39.47793579]}},{"properties":{"Total Enpl":54494.0,"State0":"FL","Landing Fa":"APF","id":"a61zr13jcyy6","Name0":"Naples Municipal","County0":"Collier County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.77544403,26.15247154]}},{"properties":{"Total Enpl":62335.0,"State0":"OK","Landing Fa":"LAW","id":"a61zr15nxohz","Name0":"Lawton-Fort Sill Regional","County0":"Comanche County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-98.41663361,34.56771469]}},{"properties":{"Total Enpl":1124.0,"State0":"IL","Landing Fa":"PWK","id":"a61zr1772863","Name0":"Palwaukee Municipal","County0":"Cook County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-87.90148163,42.11418152]}},{"properties":{"Total Enpl":34050083.0,"State0":"IL","Landing Fa":"ORD","id":"a61zr1co430c","Name0":"Chicago O'Hare International","County0":"Cook County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-87.90446472,41.97959518]}},{"properties":{"Total Enpl":6218667.0,"State0":"IL","Landing Fa":"MDW","id":"a61zr1c8krbs","Name0":"Chicago Midway","County0":"Cook County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-87.75242615,41.78598404]}},{"properties":{"Total Enpl":10175.0,"State0":"IL","Landing Fa":"CGX","id":"a61zr1du66fg","Name0":"Merrill C. Meigs","County0":"Cook County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-87.60791016,41.85884476]}},{"properties":{"Total Enpl":29886.0,"State0":"OR","Landing Fa":"OTH","id":"a61zr1bddc1s","Name0":"North Bend Municipal","County0":"Coos County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-124.2460251,43.41713715]}},{"properties":{"Total Enpl":2345.0,"State0":"AR","Landing Fa":"JBR","id":"a61zr1b6t08w","Name0":"Jonesboro Municipal","County0":"Craighead County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-90.64616394,35.83185959]}},{"properties":{"Total Enpl":73882.0,"State0":"NC","Landing Fa":"EWN","id":"a61zr123dok0","Name0":"Craven County Regional","County0":"Craven County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-77.04294586,35.07297134]}},{"properties":{"Total Enpl":15280.0,"State0":"NC","Landing Fa":"NKT","id":"a61zr17bemt9","Name0":"Cherry Point Marine Corps Air Station/Cunningham Field","County0":"Craven County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-76.88105011,34.90266037]}},{"properties":{"Total Enpl":19190.0,"State0":"MN","Landing Fa":"BRD","id":"a61zr12w18ha","Name0":"Brainerd-Crow Wing County Regional","County0":"Crow Wing County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-94.13722992,46.39785767]}},{"properties":{"Total Enpl":930.0,"State0":"PR","Landing Fa":"CPX","id":"a61zr15moavq","Name0":"Benjamin Rivera Noriega","County0":"Culebra Municipio"},"type":"Feature","geometry":{"type":"Point","coordinates":[-65.30432129,18.31328964]}},{"properties":{"Total Enpl":10405.0,"State0":"NC","Landing Fa":"POB","id":"a61zr1c4idm6","Name0":"Pope Air Force Base","County0":"Cumberland County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-79.01447296,35.17088318]}},{"properties":{"Total Enpl":157906.0,"State0":"NC","Landing Fa":"FAY","id":"a61zr1cqdwzu","Name0":"Fayetteville Regional/Grannis Field","County0":"Cumberland County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-78.87999725,34.99147034]}},{"properties":{"Total Enpl":678852.0,"State0":"ME","Landing Fa":"PWM","id":"a61zr1cyokas","Name0":"Portland International Jetport","County0":"Cumberland County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-70.30874634,43.64616776]}},{"properties":{"Total Enpl":1231.0,"State0":"NM","Landing Fa":"CVS","id":"a61zr1bogeb3","Name0":"Cannon Air Force Base","County0":"Curry County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-103.3221741,34.38285446]}},{"properties":{"Total Enpl":2841.0,"State0":"NM","Landing Fa":"CVN","id":"a61zr1hz60b4","Name0":"Clovis Municipal","County0":"Curry County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-103.079277,34.42514038]}},{"properties":{"Total Enpl":1951.0,"State0":"MT","Landing Fa":"MLS","id":"a61zr14tki07","Name0":"Frank Wiley Field","County0":"Custer County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-105.8862381,46.42795944]}},{"properties":{"Total Enpl":6089380.0,"State0":"OH","Landing Fa":"CLE","id":"a61zr14o5ch8","Name0":"Cleveland-Hopkins International","County0":"Cuyahoga County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.84939575,41.41089249]}},{"properties":{"Total Enpl":829.0,"State0":"OH","Landing Fa":"BKL","id":"a61zr195ywix","Name0":"Burke Lakefront","County0":"Cuyahoga County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.68333435,41.51750183]}},{"properties":{"Total Enpl":66025.0,"State0":"AL","Landing Fa":"DHN","id":"a61zr13tpg8g","Name0":"Dothan Regional","County0":"Dale County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-85.44963074,31.32133865]}},{"properties":{"Total Enpl":3415478.0,"State0":"TX","Landing Fa":"DAL","id":"a61zr1hrpzci","Name0":"Dallas Love Field","County0":"Dallas County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-96.85176849,32.84711456]}},{"properties":{"Total Enpl":681272.0,"State0":"WI","Landing Fa":"MSN","id":"a61zr1dxczr5","Name0":"Dane County Regional-Truax Field","County0":"Dane County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-89.33751678,43.13985825]}},{"properties":{"Total Enpl":1362.0,"State0":"NC","Landing Fa":"MQI","id":"a61zr1he4n51","Name0":"Dare County Regional","County0":"Dare County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-75.69554138,35.91898727]}},{"properties":{"Total Enpl":715924.0,"State0":"PA","Landing Fa":"MDT","id":"a61zr18iztcs","Name0":"Harrisburg International","County0":"Dauphin County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-76.76340485,40.1934967]}},{"properties":{"Total Enpl":4207731.0,"State0":"TN","Landing Fa":"BNA","id":"a61zr1a16c75","Name0":"Nashville International","County0":"Davidson County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-86.67818451,36.12447739]}},{"properties":{"Total Enpl":10229.0,"State0":"KY","Landing Fa":"OWB","id":"a61zr14d8mq5","Name0":"Owensboro-Daviess County","County0":"Daviess County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-87.16683197,37.7401123]}},{"properties":{"Total Enpl":1735.0,"State0":"NE","Landing Fa":"CDR","id":"a61zr19ve8fo","Name0":"Chadron Municipal","County0":"Dawes County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-103.0954132,42.83755493]}},{"properties":{"Total Enpl":1510.0,"State0":"MT","Landing Fa":"GDV","id":"a61zr1ehzdvn","Name0":"Dawson Community","County0":"Dawson County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-104.8071976,47.13871765]}},{"properties":{"Total Enpl":2315.0,"State0":"GA","Landing Fa":"PDK","id":"a61zr1gh5a81","Name0":"Dekalb-Peachtree","County0":"Dekalb County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-84.30197144,33.87560272]}},{"properties":{"Total Enpl":12289.0,"State0":"CA","Landing Fa":"CEC","id":"a61zr1hirrai","Name0":"Jack McNamara Field","County0":"Del Norte County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-124.2365341,41.780159]}},{"properties":{"Total Enpl":20550.0,"State0":"MI","Landing Fa":"ESC","id":"a61zr1b4i791","Name0":"Delta County","County0":"Delta County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-87.09373474,45.72267151]}},{"properties":{"Total Enpl":482.0,"State0":"AK","Landing Fa":"HRR","id":"a61zr14iaoyq","Name0":"Healy River","County0":"Denali Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-148.9689789,63.86620712]}},{"properties":{"Total Enpl":725.0,"State0":"AK","Landing Fa":"INR","id":"a61zr1auzz44","Name0":"McKinley National Park","County0":"Denali Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-148.9106445,63.73259735]}},{"properties":{"Total Enpl":1556.0,"State0":"AK","Landing Fa":"5Z5","id":"a61zr18mhh2b","Name0":"Kantishna","County0":"Denali Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-150.9939575,63.54171371]}},{"properties":{"Total Enpl":18039836.0,"State0":"CO","Landing Fa":"DEN","id":"a61zr15ozcty","Name0":"Denver International","County0":"Denver County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-104.6669998,39.85840988]}},{"properties":{"Total Enpl":18828.0,"State0":"IA","Landing Fa":"BRL","id":"a61zr1e5kylo","Name0":"Burlington Regional","County0":"Des Moines County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-91.12550354,40.78322601]}},{"properties":{"Total Enpl":140915.0,"State0":"OR","Landing Fa":"RDM","id":"a61zr17ou56v","Name0":"Roberts Field","County0":"Deschutes County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-121.1499634,44.25406647]}},{"properties":{"Total Enpl":1450.0,"State0":"OR","Landing Fa":"S07","id":"a61zr13lv20a","Name0":"Bend Municipal","County0":"Deschutes County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-121.2006378,44.09483337]}},{"properties":{"Total Enpl":9220.0,"State0":"MI","Landing Fa":"IMT","id":"a61zr16pis4r","Name0":"Ford","County0":"Dickinson County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-88.1145401,45.81835556]}},{"properties":{"Total Enpl":648.0,"State0":"AK","Landing Fa":"KKU","id":"a61zr1ba9hik","Name0":"Ekuk","County0":"Dillingham Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-158.5588379,58.81119156]}},{"properties":{"Total Enpl":973.0,"State0":"AK","Landing Fa":"KEK","id":"a61zr17dsrzl","Name0":"Ekwok","County0":"Dillingham Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-157.474411,59.35399628]}},{"properties":{"Total Enpl":1855.0,"State0":"AK","Landing Fa":"JZZ","id":"a61zr1bgfupv","Name0":"Koliganek","County0":"Dillingham Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-157.2594757,59.72664261]}},{"properties":{"Total Enpl":45173.0,"State0":"AK","Landing Fa":"DLG","id":"a61zr1hao633","Name0":"Dillingham","County0":"Dillingham Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-158.5033417,59.04541397]}},{"properties":{"Total Enpl":524.0,"State0":"AK","Landing Fa":"A63","id":"a61zr1a0n6mo","Name0":"Twin Hills","County0":"Dillingham Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-160.2730408,59.07562256]}},{"properties":{"Total Enpl":3845.0,"State0":"AK","Landing Fa":"TOG","id":"a61zr1854e4f","Name0":"Togiak","County0":"Dillingham Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-160.3969269,59.05284119]}},{"properties":{"Total Enpl":2029.0,"State0":"AK","Landing Fa":"CLP","id":"a61zr1a89u4g","Name0":"Clarks Point","County0":"Dillingham Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-158.5452271,58.84230423]}},{"properties":{"Total Enpl":2855.0,"State0":"AK","Landing Fa":"17Z","id":"a61zr16td7vd","Name0":"Manokotak","County0":"Dillingham Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-159.0499725,58.98896408]}},{"properties":{"Total Enpl":2217.0,"State0":"AK","Landing Fa":"KNW","id":"a61zr17kfulm","Name0":"New Stuyahok","County0":"Dillingham Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-157.3271942,59.44955444]}},{"properties":{"Total Enpl":468.0,"State0":"WI","Landing Fa":"UNU","id":"a61zr1ciooac","Name0":"Dodge County","County0":"Dodge County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-88.70322418,43.42658234]}},{"properties":{"Total Enpl":2995.0,"State0":"NM","Landing Fa":"LRU","id":"a61zr19chn2q","Name0":"Las Cruces International","County0":"Dona Ana County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-106.9219742,32.28941727]}},{"properties":{"Total Enpl":450.0,"State0":"SC","Landing Fa":"DYB","id":"a61zr1bl9add","Name0":"Summerville","County0":"Dorchester County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-80.27933502,33.06344604]}},{"properties":{"Total Enpl":44339.0,"State0":"GA","Landing Fa":"ABY","id":"a61zr1f4dm84","Name0":"Southwest Georgia Regional","County0":"Dougherty County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-84.19447327,31.53551483]}},{"properties":{"Total Enpl":519.0,"State0":"OR","Landing Fa":"RBG","id":"a61zr1drzso1","Name0":"Roseburg Regional","County0":"Douglas County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-123.3558655,43.23878479]}},{"properties":{"Total Enpl":52855.0,"State0":"WA","Landing Fa":"EAT","id":"a61zr14nv1ug","Name0":"Pangborn Memorial","County0":"Douglas County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-120.2068329,47.39886093]}},{"properties":{"Total Enpl":1836457.0,"State0":"NE","Landing Fa":"OMA","id":"a61zr13e901x","Name0":"Eppley Airfield","County0":"Douglas County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-95.89417267,41.30251694]}},{"properties":{"Total Enpl":393.0,"State0":"NE","Landing Fa":"MLE","id":"a61zr17nuw9d","Name0":"Millard","County0":"Douglas County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-96.11227417,41.19599915]}},{"properties":{"Total Enpl":55555.0,"State0":"IA","Landing Fa":"DBQ","id":"a61zr1bpyk0a","Name0":"Dubuque Regional","County0":"Dubuque County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-90.70916748,42.40295792]}},{"properties":{"Total Enpl":73461.0,"State0":"MA","Landing Fa":"MVY","id":"a61zr158gk1t","Name0":"Marthas Vineyard","County0":"Dukes County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-70.61433411,41.39302444]}},{"properties":{"Total Enpl":5905.0,"State0":"NY","Landing Fa":"POU","id":"a61zr1et6t2d","Name0":"Dutchess County","County0":"Dutchess County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8841095,41.6266098]}},{"properties":{"Total Enpl":4144.0,"State0":"FL","Landing Fa":"NIP","id":"a61zr17n5y9p","Name0":"Jacksonville Naval Air Station/Towers Field","County0":"Duval County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.67648315,30.23468399]}},{"properties":{"Total Enpl":2445231.0,"State0":"FL","Landing Fa":"JAX","id":"a61zr123ni1u","Name0":"Jacksonville International","County0":"Duval County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.68785858,30.49405479]}},{"properties":{"Total Enpl":175457.0,"State0":"CO","Landing Fa":"EGE","id":"a61zr17jl5g7","Name0":"Eagle County Regional","County0":"Eagle County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-106.9176941,39.64256668]}},{"properties":{"Total Enpl":410386.0,"State0":"LA","Landing Fa":"BTR","id":"a61zr1fqo7vo","Name0":"Baton Rouge Metropolitan, Ryan Field","County0":"East Baton Rouge Parish"},"type":"Feature","geometry":{"type":"Point","coordinates":[-91.14963531,30.53316116]}},{"properties":{"Total Enpl":7787.0,"State0":"NM","Landing Fa":"CNM","id":"a61zr12kwpsx","Name0":"Cavern City Air Trml","County0":"Eddy County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-104.2632751,32.33747101]}},{"properties":{"Total Enpl":12843.0,"State0":"CA","Landing Fa":"TVL","id":"a61zr1c9e2po","Name0":"Lake Tahoe","County0":"El Dorado County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-119.9953384,38.89388275]}},{"properties":{"Total Enpl":1635.0,"State0":"TX","Landing Fa":"BIF","id":"a61zr1i86vkz","Name0":"Biggs Army Air Field","County0":"El Paso County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-106.379982,31.84955025]}},{"properties":{"Total Enpl":1223324.0,"State0":"CO","Landing Fa":"COS","id":"a61zr14jweyb","Name0":"City Of Colorado Springs Municipal","County0":"El Paso County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-104.7002487,38.80580521]}},{"properties":{"Total Enpl":1688927.0,"State0":"TX","Landing Fa":"ELP","id":"a61zr12lndx6","Name0":"El Paso International","County0":"El Paso County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-106.3778076,31.80666733]}},{"properties":{"Total Enpl":119295.0,"State0":"NV","Landing Fa":"EKO","id":"a61zr157laq5","Name0":"Elko Regional","County0":"Elko County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-115.7916946,40.82492447]}},{"properties":{"Total Enpl":7143.0,"State0":"KS","Landing Fa":"HYS","id":"a61zr14926pg","Name0":"Hays Regional","County0":"Ellis County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-99.27403259,38.84494019]}},{"properties":{"Total Enpl":662.0,"State0":"ID","Landing Fa":"MUO","id":"a61zr1eclfld","Name0":"Mountain Home Air Force Base","County0":"Elmore County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-115.8725891,43.04350281]}},{"properties":{"Total Enpl":31977.0,"State0":"MI","Landing Fa":"PLN","id":"a61zr1gpthf9","Name0":"Pellston Regional Airport Of Emmet County","County0":"Emmet County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-84.79671478,45.57092667]}},{"properties":{"Total Enpl":167507.0,"State0":"PA","Landing Fa":"ERI","id":"a61zr1bfssdd","Name0":"Erie International","County0":"Erie County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-80.17621613,42.08201981]}},{"properties":{"Total Enpl":1213.0,"State0":"OH","Landing Fa":"89D","id":"a61zr19cp486","Name0":"Kelleys Island Land Field","County0":"Erie County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-82.68462372,41.60282516]}},{"properties":{"Total Enpl":1827466.0,"State0":"NY","Landing Fa":"BUF","id":"a61zr165gajt","Name0":"Buffalo Niagara International","County0":"Erie County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-78.7321701,42.94052505]}},{"properties":{"Total Enpl":10082.0,"State0":"OH","Landing Fa":"SKY","id":"a61zr13r8a8q","Name0":"Griffing Sandusky","County0":"Erie County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-82.65233612,41.43336105]}},{"properties":{"Total Enpl":544979.0,"State0":"FL","Landing Fa":"PNS","id":"a61zr1g2tsj0","Name0":"Pensacola Regional","County0":"Escambia County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-87.18744659,30.47330475]}},{"properties":{"Total Enpl":16927048.0,"State0":"NJ","Landing Fa":"EWR","id":"a61zr1g8bnph","Name0":"Newark International","County0":"Essex County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-74.16866302,40.69249725]}},{"properties":{"Total Enpl":1740.0,"State0":"AK","Landing Fa":"EIL","id":"a61zr14f01ka","Name0":"Eielson Air Force Base","County0":"Fairbanks North Star Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-147.1015015,64.66566467]}},{"properties":{"Total Enpl":775.0,"State0":"AK","Landing Fa":"FBK","id":"a61zr1hf6ed8","Name0":"Wainwright Army Air Field","County0":"Fairbanks North Star Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-147.6144409,64.83750153]}},{"properties":{"Total Enpl":393381.0,"State0":"AK","Landing Fa":"FAI","id":"a61zr1gh29b9","Name0":"Fairbanks International","County0":"Fairbanks North Star Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-147.8596649,64.81367493]}},{"properties":{"Total Enpl":5523.0,"State0":"CT","Landing Fa":"BDR","id":"a61zr1bh1ln9","Name0":"Igor I. Sikorsky Memorial","County0":"Fairfield County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-73.12617493,41.16348267]}},{"properties":{"Total Enpl":17410.0,"State0":"PR","Landing Fa":"X95","id":"a61zr1eqllpl","Name0":"Diego Jimenez Torres","County0":"Fajardo Municipio"},"type":"Feature","geometry":{"type":"Point","coordinates":[-65.66182709,18.30801201]}},{"properties":{"Total Enpl":523457.0,"State0":"KY","Landing Fa":"LEX","id":"a61zr1eiq3e2","Name0":"Blue Grass","County0":"Fayette County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-84.60539246,38.03697205]}},{"properties":{"Total Enpl":1202.0,"State0":"MT","Landing Fa":"LWT","id":"a61zr16ca31v","Name0":"Lewistown Municipal","County0":"Fergus County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-109.4665985,47.04914093]}},{"properties":{"Total Enpl":10943.0,"State0":"KS","Landing Fa":"GCK","id":"a61zr13qp5t4","Name0":"Garden City Regional","County0":"Finney County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-100.724411,37.92751694]}},{"properties":{"Total Enpl":146942.0,"State0":"MT","Landing Fa":"FCA","id":"a61zr138lgx6","Name0":"Glacier Park International","County0":"Flathead County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-114.2550659,48.31140518]}},{"properties":{"Total Enpl":57123.0,"State0":"SC","Landing Fa":"FLO","id":"a61zr1cisrcb","Name0":"Florence Regional","County0":"Florence County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-79.72389221,34.18535995]}},{"properties":{"Total Enpl":5818.0,"State0":"KS","Landing Fa":"DDC","id":"a61zr12r76rg","Name0":"Dodge City Regional","County0":"Ford County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-99.96542358,37.76312256]}},{"properties":{"Total Enpl":7242.0,"State0":"NC","Landing Fa":"INT","id":"a61zr1bqlt8w","Name0":"Smith Reynolds","County0":"Forsyth County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-80.22200012,36.1337204]}},{"properties":{"Total Enpl":308.0,"State0":"TX","Landing Fa":"SGR","id":"a61zr18du1d4","Name0":"Sugar Land Municipal/Hull Field","County0":"Fort Bend County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-95.65653229,29.62225342]}},{"properties":{"Total Enpl":566.0,"State0":"ME","Landing Fa":"8B0","id":"a61zr1crxn9b","Name0":"Rangeley Municipal","County0":"Franklin County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-70.66462708,44.99189377]}},{"properties":{"Total Enpl":206105.0,"State0":"WA","Landing Fa":"PSC","id":"a61zr13cg9ja","Name0":"Tri-Cities","County0":"Franklin County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-119.1190262,46.26467896]}},{"properties":{"Total Enpl":663.0,"State0":"OH","Landing Fa":"LCK","id":"a61zr1c3wwfh","Name0":"Rickenbacker International","County0":"Franklin County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-82.92786407,39.81375885]}},{"properties":{"Total Enpl":5272.0,"State0":"NY","Landing Fa":"SLK","id":"a61zr1231767","Name0":"Adirondack Regional","County0":"Franklin County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-74.20618439,44.38531113]}},{"properties":{"Total Enpl":3366430.0,"State0":"OH","Landing Fa":"CMH","id":"a61zr1g4yuoc","Name0":"Port Columbus International","County0":"Franklin County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-82.89188385,39.99798584]}},{"properties":{"Total Enpl":13327.0,"State0":"WY","Landing Fa":"RIW","id":"a61zr1ejfmir","Name0":"Riverton Regional","County0":"Fremont County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-108.4598389,43.06423569]}},{"properties":{"Total Enpl":520303.0,"State0":"CA","Landing Fa":"FAT","id":"a61zr1c4qhp7","Name0":"Fresno Yosemite International","County0":"Fresno County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-119.7181396,36.77619553]}},{"properties":{"Total Enpl":4998.0,"State0":"MT","Landing Fa":"WYS","id":"a61zr176pu91","Name0":"Yellowstone","County0":"Gallatin County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-111.1176376,44.68840027]}},{"properties":{"Total Enpl":223006.0,"State0":"MT","Landing Fa":"BZN","id":"a61zr16ql0st","Name0":"Gallatin Field","County0":"Gallatin County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-111.1530075,45.77690125]}},{"properties":{"Total Enpl":2965.0,"State0":"TX","Landing Fa":"GLS","id":"a61zr123nky5","Name0":"Scholes International at Galveston","County0":"Galveston County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-94.86040497,29.26532364]}},{"properties":{"Total Enpl":2431.0,"State0":"OK","Landing Fa":"WDG","id":"a61zr124q0dg","Name0":"Enid Woodring Municipal","County0":"Garfield County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-97.79111481,36.3792038]}},{"properties":{"Total Enpl":2785.0,"State0":"UT","Landing Fa":"BCE","id":"a61zr12vttkw","Name0":"Bryce Canyon","County0":"Garfield County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1454697,37.70637131]}},{"properties":{"Total Enpl":2411.0,"State0":"AR","Landing Fa":"HOT","id":"a61zr1eexumh","Name0":"Memorial Field","County0":"Garland County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-93.09620667,34.47803497]}},{"properties":{"Total Enpl":875.0,"State0":"OH","Landing Fa":"7G8","id":"a61zr19sq1uf","Name0":"Geauga County","County0":"Geauga County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.06292725,41.44960785]}},{"properties":{"Total Enpl":322927.0,"State0":"MI","Landing Fa":"FNT","id":"a61zr1ide2x6","Name0":"Bishop International","County0":"Genesee County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-83.74345398,42.96550369]}},{"properties":{"Total Enpl":24492.0,"State0":"GA","Landing Fa":"BQK","id":"a61zr17dz9lq","Name0":"Glynco Jetport","County0":"Glynn County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.46630859,31.25902748]}},{"properties":{"Total Enpl":1943.0,"State0":"MI","Landing Fa":"IWD","id":"a61zr17fjfqr","Name0":"Gogebic-Iron County","County0":"Gogebic County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-90.13139343,46.52747345]}},{"properties":{"Total Enpl":20152.0,"State0":"NH","Landing Fa":"LEB","id":"a61zr1gr3ix6","Name0":"Lebanon Municipal","County0":"Grafton County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-72.30426788,43.62637329]}},{"properties":{"Total Enpl":1960.0,"State0":"UT","Landing Fa":"CNY","id":"a61zr1i90v28","Name0":"Canyonlands Field","County0":"Grand County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-109.7548447,38.75495529]}},{"properties":{"Total Enpl":88281.0,"State0":"ND","Landing Fa":"GFK","id":"a61zr19dvc04","Name0":"Grand Forks International","County0":"Grand Forks County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-97.17610931,47.9492569]}},{"properties":{"Total Enpl":189809.0,"State0":"MI","Landing Fa":"TVC","id":"a61zr14e3opc","Name0":"Cherry Capital","County0":"Grand Traverse County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-85.58223724,44.74144363]}},{"properties":{"Total Enpl":3192.0,"State0":"NM","Landing Fa":"SVC","id":"a61zr18mn74j","Name0":"Grant County","County0":"Grant County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-108.1563873,32.63654709]}},{"properties":{"Total Enpl":11861.0,"State0":"WA","Landing Fa":"MWH","id":"a61zr1di61se","Name0":"Grant County International","County0":"Grant County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-119.3201904,47.20770645]}},{"properties":{"Total Enpl":12771.0,"State0":"WV","Landing Fa":"LWB","id":"a61zr16e9hcj","Name0":"Greenbrier Valley","County0":"Greenbrier County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-80.3994751,37.85830688]}},{"properties":{"Total Enpl":349320.0,"State0":"MO","Landing Fa":"SGF","id":"a61zr195eys4","Name0":"Springfield-Branson Regional","County0":"Greene County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-93.38685608,37.24432755]}},{"properties":{"Total Enpl":293.0,"State0":"SC","Landing Fa":"GMU","id":"a61zr1frltdw","Name0":"Greenville Downtown","County0":"Greenville County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-82.34999847,34.84794617]}},{"properties":{"Total Enpl":30497.0,"State0":"TX","Landing Fa":"GGG","id":"a61zr17d2ssx","Name0":"Gregg County","County0":"Gregg County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-94.71170807,32.38486099]}},{"properties":{"Total Enpl":1382198.0,"State0":"NC","Landing Fa":"GSO","id":"a61zr197dupb","Name0":"Piedmont Triad International","County0":"Guilford County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-79.93729401,36.0977478]}},{"properties":{"Total Enpl":57953.0,"State0":"CO","Landing Fa":"GUC","id":"a61zr1hudsyh","Name0":"Gunnison County","County0":"Gunnison County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-106.9331818,38.53396225]}},{"properties":{"Total Enpl":11060.0,"State0":"AK","Landing Fa":"HNS","id":"a61zr19d2ltn","Name0":"Haines","County0":"Haines Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-135.52211,59.24522781]}},{"properties":{"Total Enpl":13063.0,"State0":"NE","Landing Fa":"GRI","id":"a61zr1igdyvp","Name0":"Central Nebraska Regional","County0":"Hall County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-98.30860901,40.96747208]}},{"properties":{"Total Enpl":303689.0,"State0":"TN","Landing Fa":"CHA","id":"a61zr16bljol","Name0":"Lovell Field","County0":"Hamilton County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-85.20378876,35.03526688]}},{"properties":{"Total Enpl":448.0,"State0":"OH","Landing Fa":"LUK","id":"a61zr1dgwzij","Name0":"Cincinnati Municipal Airport Lunken Field","County0":"Hamilton County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-84.41861725,39.10334396]}},{"properties":{"Total Enpl":523.0,"State0":"OH","Landing Fa":"ISZ","id":"a61zr134bdps","Name0":"Cincinnati-Blue Ash","County0":"Hamilton County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-84.38896942,39.24669266]}},{"properties":{"Total Enpl":2073.0,"State0":"MA","Landing Fa":"CEF","id":"a61zr17by9mb","Name0":"Westover Arb/Metropolitan","County0":"Hampden County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-72.53425598,42.19826508]}},{"properties":{"Total Enpl":1271.0,"State0":"VA","Landing Fa":"LFI","id":"a61zr1c0gxps","Name0":"Langley Air Force Base","County0":"Hampton City"},"type":"Feature","geometry":{"type":"Point","coordinates":[-76.36049652,37.08292389]}},{"properties":{"Total Enpl":11841.0,"State0":"ME","Landing Fa":"BHB","id":"a61zr18izgi5","Name0":"Hancock County-Bar Harbor","County0":"Hancock County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-68.3615036,44.44969559]}},{"properties":{"Total Enpl":392.0,"State0":"OH","Landing Fa":"5G7","id":"a61zr1h1fp2z","Name0":"Bluffton","County0":"Hancock County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-83.86863708,40.88544464]}},{"properties":{"Total Enpl":15267294.0,"State0":"TX","Landing Fa":"IAH","id":"a61zr14hqob9","Name0":"George Bush Intercontinental Airport/Houston","County0":"Harris County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-95.33972168,29.98047256]}},{"properties":{"Total Enpl":46223.0,"State0":"TX","Landing Fa":"EFD","id":"a61zr1ctxdo7","Name0":"Ellington Field","County0":"Harris County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-95.15875244,29.60733414]}},{"properties":{"Total Enpl":4243907.0,"State0":"TX","Landing Fa":"HOU","id":"a61zr1awltzi","Name0":"William P. Hobby","County0":"Harris County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-95.27889252,29.64541817]}},{"properties":{"Total Enpl":1220.0,"State0":"TX","Landing Fa":"DWH","id":"a61zr17hj7g5","Name0":"David Wayne Hooks Memorial","County0":"Harris County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-95.55278015,30.06186104]}},{"properties":{"Total Enpl":16276.0,"State0":"WV","Landing Fa":"CKB","id":"a61zr12yacrv","Name0":"Benedum","County0":"Harrison County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-80.22808075,39.29663849]}},{"properties":{"Total Enpl":400976.0,"State0":"MS","Landing Fa":"GPT","id":"a61zr12k4t9i","Name0":"Gulfport-Biloxi Regional","County0":"Harrison County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-89.07009125,30.40727997]}},{"properties":{"Total Enpl":3148196.0,"State0":"CT","Landing Fa":"BDL","id":"a61zr1heh7iz","Name0":"Bradley International","County0":"Hartford County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-72.68322754,41.93887329]}},{"properties":{"Total Enpl":2475.0,"State0":"CT","Landing Fa":"HFD","id":"a61zr171hsk4","Name0":"Hartford-Brainard","County0":"Hartford County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-72.65021515,41.73626709]}},{"properties":{"Total Enpl":258.0,"State0":"KS","Landing Fa":"EWK","id":"a61zr124djz3","Name0":"Newton-City-County","County0":"Harvey County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-97.27523041,38.05710602]}},{"properties":{"Total Enpl":1271744.0,"State0":"HI","Landing Fa":"KOA","id":"a61zr1hz1lnl","Name0":"Kona International At Keahole","County0":"Hawaii County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-156.0428314,19.73573112]}},{"properties":{"Total Enpl":735668.0,"State0":"HI","Landing Fa":"ITO","id":"a61zr1gx1q4a","Name0":"Hilo International","County0":"Hawaii County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-155.0484772,19.72026253]}},{"properties":{"Total Enpl":1574.0,"State0":"HI","Landing Fa":"MUE","id":"a61zr19oio0t","Name0":"Waimea-Kohala","County0":"Hawaii County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-155.6681061,20.00132751]}},{"properties":{"Total Enpl":15683399.0,"State0":"MN","Landing Fa":"MSP","id":"a61zr1ekhhbq","Name0":"Minneapolis-Saint Paul International/Wold-Chamberlain","County0":"Hennepin County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-93.21691895,44.88054657]}},{"properties":{"Total Enpl":1318137.0,"State0":"VA","Landing Fa":"RIC","id":"a61zr1dybgvs","Name0":"Richmond International","County0":"Henrico County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-77.319664,37.5051651]}},{"properties":{"Total Enpl":1200.0,"State0":"TX","Landing Fa":"25R","id":"a61zr15umc2i","Name0":"Edinburg International","County0":"Hidalgo County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-98.12945557,26.44201088]}},{"properties":{"Total Enpl":311237.0,"State0":"TX","Landing Fa":"MFE","id":"a61zr13v6cpq","Name0":"McAllen Miller International","County0":"Hidalgo County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-98.23860931,26.17583275]}},{"properties":{"Total Enpl":1533.0,"State0":"MT","Landing Fa":"HVR","id":"a61zr1eyttgg","Name0":"Havre City-County","County0":"Hill County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-109.7623444,48.54298401]}},{"properties":{"Total Enpl":7490117.0,"State0":"FL","Landing Fa":"TPA","id":"a61zr179yqk9","Name0":"Tampa International","County0":"Hillsborough County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-82.5332489,27.9754715]}},{"properties":{"Total Enpl":2603.0,"State0":"FL","Landing Fa":"MCF","id":"a61zr16ofvj7","Name0":"MacDill Air Force Base","County0":"Hillsborough County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-82.52148438,27.84919167]}},{"properties":{"Total Enpl":1397024.0,"State0":"NH","Landing Fa":"MHT","id":"a61zr14r3upi","Name0":"Manchester","County0":"Hillsborough County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-71.4370575,42.93451691]}},{"properties":{"Total Enpl":10974390.0,"State0":"HI","Landing Fa":"HNL","id":"a61zr196cbv8","Name0":"Honolulu International","County0":"Honolulu County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-157.9224091,21.31869125]}},{"properties":{"Total Enpl":912.0,"State0":"KY","Landing Fa":"2I0","id":"a61zr1drhw3e","Name0":"Madisonville Municipal","County0":"Hopkins County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-87.39963531,37.35502625]}},{"properties":{"Total Enpl":1181.0,"State0":"SC","Landing Fa":"CRE","id":"a61zr166fmey","Name0":"Grand Strand","County0":"Horry County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-78.72394562,33.8117485]}},{"properties":{"Total Enpl":630655.0,"State0":"SC","Landing Fa":"MYR","id":"a61zr14cxcyv","Name0":"Myrtle Beach International","County0":"Horry County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-78.9283371,33.67974854]}},{"properties":{"Total Enpl":27998.0,"State0":"MI","Landing Fa":"CMX","id":"a61zr1gxcy58","Name0":"Houghton County Memorial","County0":"Houghton County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-88.48905945,47.16841888]}},{"properties":{"Total Enpl":18228.0,"State0":"SD","Landing Fa":"PIR","id":"a61zr13gas4j","Name0":"Pierre Regional","County0":"Hughes County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-100.285965,44.38267517]}},{"properties":{"Total Enpl":111071.0,"State0":"CA","Landing Fa":"ACV","id":"a61zr1f2lhz9","Name0":"Arcata","County0":"Humboldt County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-124.1086197,40.97811508]}},{"properties":{"Total Enpl":277.0,"State0":"LA","Landing Fa":"ARA","id":"a61zr135wc74","Name0":"Acadiana Regional","County0":"Iberia Parish"},"type":"Feature","geometry":{"type":"Point","coordinates":[-91.88389587,30.03775787]}},{"properties":{"Total Enpl":24834.0,"State0":"CA","Landing Fa":"IPL","id":"a61zr1656rrh","Name0":"Imperial County","County0":"Imperial County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-115.578743,32.83422089]}},{"properties":{"Total Enpl":8398.0,"State0":"UT","Landing Fa":"CDC","id":"a61zr1gk8oze","Name0":"Cedar City Regional","County0":"Iron County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-113.0985718,37.7009697]}},{"properties":{"Total Enpl":12188.0,"State0":"WA","Landing Fa":"76S","id":"a61zr12dfqri","Name0":"Wes Lupien","County0":"Island County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.6735001,48.25148773]}},{"properties":{"Total Enpl":522.0,"State0":"WA","Landing Fa":"NUW","id":"a61zr1a8bp3h","Name0":"Whidbey Island Naval Air Station/Ault Field","County0":"Island County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.6554489,48.35204697]}},{"properties":{"Total Enpl":10367.0,"State0":"MN","Landing Fa":"GPZ","id":"a61zr1appxry","Name0":"Grand Rapids/Itasca County-Gordon Newstrom Field","County0":"Itasca County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-93.50984192,47.21110153]}},{"properties":{"Total Enpl":224699.0,"State0":"OR","Landing Fa":"MFR","id":"a61zr1by3gm4","Name0":"Rogue Valley International-Medford","County0":"Jackson County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.873497,42.37422943]}},{"properties":{"Total Enpl":28877.0,"State0":"MO","Landing Fa":"JLN","id":"a61zr1a74ww6","Name0":"Joplin Regional","County0":"Jasper County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-94.49826813,37.15181351]}},{"properties":{"Total Enpl":1908829.0,"State0":"KY","Landing Fa":"SDF","id":"a61zr12w1vhs","Name0":"Louisville International-Standiford Field","County0":"Jefferson County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-85.73600006,38.17438889]}},{"properties":{"Total Enpl":306.0,"State0":"IL","Landing Fa":"MVN","id":"a61zr16tfkz4","Name0":"Mount Vernon","County0":"Jefferson County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-88.85848236,38.32335281]}},{"properties":{"Total Enpl":257.0,"State0":"NY","Landing Fa":"GTB","id":"a61zr16p4n34","Name0":"Wheeler-Sack Army Air Field","County0":"Jefferson County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-75.72166443,44.05166626]}},{"properties":{"Total Enpl":17355.0,"State0":"PA","Landing Fa":"DUJ","id":"a61zr165d8vt","Name0":"Du Bois-Jefferson County","County0":"Jefferson County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-78.8986969,41.17826462]}},{"properties":{"Total Enpl":1525654.0,"State0":"AL","Landing Fa":"BHM","id":"a61zr1cw9900","Name0":"Birmingham International","County0":"Jefferson County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-86.75354767,33.5629425]}},{"properties":{"Total Enpl":3598.0,"State0":"NY","Landing Fa":"ART","id":"a61zr12xxxwd","Name0":"Watertown International","County0":"Jefferson County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-76.02173615,43.99192047]}},{"properties":{"Total Enpl":97537.0,"State0":"TX","Landing Fa":"BPT","id":"a61zr1eumno9","Name0":"Southeast Texas Regional","County0":"Jefferson County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-94.02069092,29.95083237]}},{"properties":{"Total Enpl":2300.0,"State0":"WI","Landing Fa":"RYV","id":"a61zr1437ksm","Name0":"Watertown Municipal","County0":"Jefferson County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-88.7232132,43.16963196]}},{"properties":{"Total Enpl":4735571.0,"State0":"LA","Landing Fa":"MSY","id":"a61zr185lwbr","Name0":"Louis Armstrong New Orleans International/Moisant Field","County0":"Jefferson Parish"},"type":"Feature","geometry":{"type":"Point","coordinates":[-90.25802612,29.99338913]}},{"properties":{"Total Enpl":833.0,"State0":"MO","Landing Fa":"SZL","id":"a61zr1ij75xj","Name0":"Whiteman Air Force Base","County0":"Johnson County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-93.54798889,38.73028946]}},{"properties":{"Total Enpl":12331.0,"State0":"MS","Landing Fa":"PIB","id":"a61zr12oy3br","Name0":"Hattiesburg-Laurel Regional","County0":"Jones County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-89.33705902,31.46714973]}},{"properties":{"Total Enpl":377559.0,"State0":"AK","Landing Fa":"JNU","id":"a61zr17l0d6o","Name0":"Juneau International","County0":"Juneau Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-134.5762787,58.3549614]}},{"properties":{"Total Enpl":278212.0,"State0":"MI","Landing Fa":"AZO","id":"a61zr199852n","Name0":"Kalamazoo/Battle Creek International","County0":"Kalamazoo County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-85.55205536,42.23487473]}},{"properties":{"Total Enpl":6500.0,"State0":"HI","Landing Fa":"LUP","id":"a61zr19dmz0e","Name0":"Kalaupapa","County0":"Kalawao County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-156.9736023,21.2110424]}},{"properties":{"Total Enpl":266679.0,"State0":"WV","Landing Fa":"CRW","id":"a61zr1gfjtuh","Name0":"Yeager","County0":"Kanawha County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.59319305,38.37314987]}},{"properties":{"Total Enpl":830.0,"State0":"MN","Landing Fa":"ILL","id":"a61zr16bglqu","Name0":"Willmar Municipal-John L. Rice Field","County0":"Kandiyohi County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-95.08881378,45.11567688]}},{"properties":{"Total Enpl":5000.0,"State0":"HI","Landing Fa":"PAK","id":"a61zr13th5ic","Name0":"Port Allen","County0":"Kauai County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-159.5986786,21.89986038]}},{"properties":{"Total Enpl":1345733.0,"State0":"HI","Landing Fa":"LIH","id":"a61zr1fqfqvs","Name0":"Lihue","County0":"Kauai County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-159.3389587,21.97598076]}},{"properties":{"Total Enpl":2411.0,"State0":"OK","Landing Fa":"PNC","id":"a61zr1aviqlt","Name0":"Ponca City Municipal","County0":"Kay County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-97.09976959,36.73058319]}},{"properties":{"Total Enpl":2508.0,"State0":"AK","Landing Fa":"SXQ","id":"a61zr17s6pah","Name0":"Soldotna","County0":"Kenai Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-151.0324402,60.47613907]}},{"properties":{"Total Enpl":8780.0,"State0":"AK","Landing Fa":"TYE","id":"a61zr1h11bf3","Name0":"Tyonek","County0":"Kenai Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-151.1380768,61.07666397]}},{"properties":{"Total Enpl":1213.0,"State0":"AK","Landing Fa":"SWD","id":"a61zr175wihk","Name0":"Seward","County0":"Kenai Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-149.418808,60.12693787]}},{"properties":{"Total Enpl":2570.0,"State0":"AK","Landing Fa":"BLG","id":"a61zr1gpcows","Name0":"Beluga","County0":"Kenai Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-151.0438995,61.17221832]}},{"properties":{"Total Enpl":32859.0,"State0":"AK","Landing Fa":"HOM","id":"a61zr1d1132b","Name0":"Homer","County0":"Kenai Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-151.4765778,59.6455574]}},{"properties":{"Total Enpl":106530.0,"State0":"AK","Landing Fa":"ENA","id":"a61zr194xdtn","Name0":"Kenai Municipal","County0":"Kenai Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-151.2475281,60.5719986]}},{"properties":{"Total Enpl":1153.0,"State0":"AK","Landing Fa":"KEB","id":"a61zr1enpzbk","Name0":"English Bay","County0":"Kenai Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-151.9251556,59.35214996]}},{"properties":{"Total Enpl":5534.0,"State0":"AK","Landing Fa":"SOV","id":"a61zr1ckwomc","Name0":"Seldovia","County0":"Kenai Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-151.7040558,59.44244003]}},{"properties":{"Total Enpl":1481.0,"State0":"AK","Landing Fa":"PGM","id":"a61zr1gvpiih","Name0":"Port Graham","County0":"Kenai Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-151.831543,59.34825897]}},{"properties":{"Total Enpl":400.0,"State0":"AK","Landing Fa":"5AK0","id":"a61zr1byyau7","Name0":"Trading Bay Production","County0":"Kenai Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-151.7989197,60.81554794]}},{"properties":{"Total Enpl":6101.0,"State0":"ME","Landing Fa":"AUG","id":"a61zr165egxb","Name0":"Augusta State","County0":"Kennebec County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-69.7973175,44.32064819]}},{"properties":{"Total Enpl":907773.0,"State0":"MI","Landing Fa":"GRR","id":"a61zr14yibua","Name0":"Gerald R. Ford International","County0":"Kent County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-85.52276611,42.88082123]}},{"properties":{"Total Enpl":2556183.0,"State0":"RI","Landing Fa":"PVD","id":"a61zr1gn5rbs","Name0":"Theodore Francis Green State","County0":"Kent County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-71.42822266,41.72399902]}},{"properties":{"Total Enpl":147142.0,"State0":"CA","Landing Fa":"BFL","id":"a61zr159n479","Name0":"Meadows Field","County0":"Kern County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-119.0567703,35.43359756]}},{"properties":{"Total Enpl":9089.0,"State0":"CA","Landing Fa":"IYK","id":"a61zr189mqob","Name0":"Inyokern","County0":"Kern County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-117.8295135,35.65884399]}},{"properties":{"Total Enpl":46644.0,"State0":"AK","Landing Fa":"5KE","id":"a61zr19vrkwj","Name0":"Ketchikan Harbor","County0":"Ketchikan Gateway Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-131.6851044,55.34780884]}},{"properties":{"Total Enpl":132451.0,"State0":"AK","Landing Fa":"KTN","id":"a61zr19fcxt3","Name0":"Ketchikan","County0":"Ketchikan Gateway Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-131.7137451,55.35556793]}},{"properties":{"Total Enpl":13610469.0,"State0":"WA","Landing Fa":"SEA","id":"a61zr1at5snb","Name0":"Seattle-Tacoma International","County0":"King County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.3093109,47.44898224]}},{"properties":{"Total Enpl":30116.0,"State0":"WA","Landing Fa":"S60","id":"a61zr1cljxmx","Name0":"Kenmore Air Harbor Inc","County0":"King County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.2592926,47.75482178]}},{"properties":{"Total Enpl":11536.0,"State0":"WA","Landing Fa":"BFI","id":"a61zr13cze3k","Name0":"Boeing Field/King County International","County0":"King County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.3019562,47.52998734]}},{"properties":{"Total Enpl":553.0,"State0":"WA","Landing Fa":"PWT","id":"a61zr1fbt8rl","Name0":"Bremerton National","County0":"Kitsap County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.7624283,47.49275208]}},{"properties":{"Total Enpl":33729.0,"State0":"OR","Landing Fa":"LMT","id":"a61zr19qcpg2","Name0":"Klamath Falls International","County0":"Klamath County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-121.7332077,42.15614319]}},{"properties":{"Total Enpl":492.0,"State0":"IL","Landing Fa":"GBG","id":"a61zr1hde9le","Name0":"Galesburg Municipal","County0":"Knox County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-90.43112183,40.93800354]}},{"properties":{"Total Enpl":19358.0,"State0":"ME","Landing Fa":"RKD","id":"a61zr140u6cb","Name0":"Knox County Regional","County0":"Knox County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-69.09925079,44.06008148]}},{"properties":{"Total Enpl":1037.0,"State0":"AK","Landing Fa":"AKK","id":"a61zr13l7am4","Name0":"Akhiok","County0":"Kodiak Island Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-154.1825562,56.93869019]}},{"properties":{"Total Enpl":661.0,"State0":"AK","Landing Fa":"4K5","id":"a61zr1ctvcpp","Name0":"Ouzinkie","County0":"Kodiak Island Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-152.5005035,57.92287445]}},{"properties":{"Total Enpl":335.0,"State0":"AK","Landing Fa":"WSJ","id":"a61zr1h0di24","Name0":"San Juan/Uganik Bay","County0":"Kodiak Island Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-153.3206024,57.73037338]}},{"properties":{"Total Enpl":1082.0,"State0":"AK","Landing Fa":"6R7","id":"a61zr1cv2aw4","Name0":"Old Harbor","County0":"Kodiak Island Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-153.2697449,57.2181015]}},{"properties":{"Total Enpl":910.0,"State0":"AK","Landing Fa":"KYK","id":"a61zr14cy6jl","Name0":"Karluk","County0":"Kodiak Island Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-154.4503784,57.56706238]}},{"properties":{"Total Enpl":2855.0,"State0":"AK","Landing Fa":"2A3","id":"a61zr16hyfa1","Name0":"Larsen Bay","County0":"Kodiak Island Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-153.9784241,57.53510666]}},{"properties":{"Total Enpl":313.0,"State0":"AK","Landing Fa":"ALZ","id":"a61zr1fk4mf6","Name0":"Alitak","County0":"Kodiak Island Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-154.2478485,56.89948654]}},{"properties":{"Total Enpl":1499.0,"State0":"AK","Landing Fa":"ORI","id":"a61zr1730cn7","Name0":"Port Lions","County0":"Kodiak Island Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-152.8460999,57.88537598]}},{"properties":{"Total Enpl":80107.0,"State0":"AK","Landing Fa":"ADQ","id":"a61zr1gd0hc0","Name0":"Kodiak","County0":"Kodiak Island Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-152.4938507,57.74996948]}},{"properties":{"Total Enpl":2625.0,"State0":"AK","Landing Fa":"T44","id":"a61zr1c71s4t","Name0":"Trident Basin","County0":"Kodiak Island Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-152.3913879,57.7808342]}},{"properties":{"Total Enpl":22460.0,"State0":"MN","Landing Fa":"INL","id":"a61zr146rahk","Name0":"Falls International","County0":"Koochiching County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-93.40306854,48.56618881]}},{"properties":{"Total Enpl":113640.0,"State0":"WI","Landing Fa":"LSE","id":"a61zr1bj2pub","Name0":"La Crosse Municipal","County0":"La Crosse County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-91.25653839,43.87937927]}},{"properties":{"Total Enpl":1041.0,"State0":"CO","Landing Fa":"00C","id":"a61zr1c1ni6q","Name0":"Animas Air Park","County0":"La Plata County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-107.869194,37.20317841]}},{"properties":{"Total Enpl":96647.0,"State0":"CO","Landing Fa":"DRO","id":"a61zr1f2aaj4","Name0":"Durango-La Plata County","County0":"La Plata County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-107.7537689,37.15151596]}},{"properties":{"Total Enpl":395.0,"State0":"IL","Landing Fa":"VYS","id":"a61zr1apjcyd","Name0":"Illinois Valley Regional-Walter A. Duncan Field","County0":"La Salle County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-89.1530838,41.35186768]}},{"properties":{"Total Enpl":266.0,"State0":"MS","Landing Fa":"UOX","id":"a61zr16iq1o7","Name0":"University-Oxford","County0":"Lafayette County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-89.53530884,34.38431549]}},{"properties":{"Total Enpl":189772.0,"State0":"LA","Landing Fa":"LFT","id":"a61zr12segcp","Name0":"Lafayette Regional","County0":"Lafayette Parish"},"type":"Feature","geometry":{"type":"Point","coordinates":[-91.98765564,30.2052803]}},{"properties":{"Total Enpl":2475.0,"State0":"IN","Landing Fa":"GYY","id":"a61zr174yvj8","Name0":"Gary/Chicago","County0":"Lake County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-87.41278839,41.61627197]}},{"properties":{"Total Enpl":635.0,"State0":"AK","Landing Fa":"A79","id":"a61zr15j69j9","Name0":"Chignik Lake","County0":"Lake and Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-158.7753601,56.25504684]}},{"properties":{"Total Enpl":2283.0,"State0":"AK","Landing Fa":"9K2","id":"a61zr15mtcel","Name0":"Kokhanok","County0":"Lake and Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-154.8027039,59.43264389]}},{"properties":{"Total Enpl":676.0,"State0":"AK","Landing Fa":"4K0","id":"a61zr1ayttdd","Name0":"Pedro Bay","County0":"Lake and Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-154.1238403,59.789608]}},{"properties":{"Total Enpl":1330.0,"State0":"AK","Landing Fa":"IGG","id":"a61zr1bfi9yg","Name0":"Igiugig","County0":"Lake and Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-155.9032745,59.32373428]}},{"properties":{"Total Enpl":1845.0,"State0":"AK","Landing Fa":"5NN","id":"a61zr13nnyri","Name0":"Nondalton","County0":"Lake and Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-154.8396912,59.97904205]}},{"properties":{"Total Enpl":3178.0,"State0":"AK","Landing Fa":"LKK","id":"a61zr1hbcts5","Name0":"Kulik Lake","County0":"Lake and Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-155.1212769,58.98207855]}},{"properties":{"Total Enpl":282.0,"State0":"AK","Landing Fa":"TPO","id":"a61zr124758v","Name0":"Port Alsworth","County0":"Lake and Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-154.3188782,60.20433426]}},{"properties":{"Total Enpl":1037.0,"State0":"AK","Landing Fa":"PNP","id":"a61zr1i0bxni","Name0":"Pilot Point","County0":"Lake and Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-157.5674438,57.58037949]}},{"properties":{"Total Enpl":13806.0,"State0":"AK","Landing Fa":"ILI","id":"a61zr1f16w5b","Name0":"Iliamna","County0":"Lake and Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-154.910965,59.75379944]}},{"properties":{"Total Enpl":2697.0,"State0":"AK","Landing Fa":"KCL","id":"a61zr1gm8p7c","Name0":"Chignik Lagoon","County0":"Lake and Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-158.5325623,56.30786896]}},{"properties":{"Total Enpl":1819.0,"State0":"AK","Landing Fa":"AJC","id":"a61zr157koch","Name0":"Chignik","County0":"Lake and Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-158.37323,56.3114624]}},{"properties":{"Total Enpl":1879.0,"State0":"AK","Landing Fa":"EII","id":"a61zr1afqykg","Name0":"Egegik","County0":"Lake and Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-157.3809814,58.18837357]}},{"properties":{"Total Enpl":1157.0,"State0":"AK","Landing Fa":"KLL","id":"a61zr18talp5","Name0":"Levelock","County0":"Lake and Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-156.8652191,59.11816406]}},{"properties":{"Total Enpl":277.0,"State0":"AK","Landing Fa":"KIB","id":"a61zr196741l","Name0":"Ivanof Bay","County0":"Lake and Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-159.4886627,55.89753342]}},{"properties":{"Total Enpl":1416.0,"State0":"AK","Landing Fa":"KCG","id":"a61zr1bdbxrg","Name0":"Chignik Fisheries","County0":"Lake and Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-158.5909271,56.31782913]}},{"properties":{"Total Enpl":1111.0,"State0":"AK","Landing Fa":"AK5","id":"a61zr17fhsps","Name0":"Perryville","County0":"Lake and Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-159.1585846,55.90806198]}},{"properties":{"Total Enpl":5251.0,"State0":"AK","Landing Fa":"5Z9","id":"a61zr1feppbr","Name0":"Lake Brooks","County0":"Lake and Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-155.7773895,58.5548439]}},{"properties":{"Total Enpl":1694.0,"State0":"AK","Landing Fa":"PTH","id":"a61zr13zfwwc","Name0":"Port Heiden","County0":"Lake and Peninsula Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-158.6318207,56.95943451]}},{"properties":{"Total Enpl":19342.0,"State0":"PA","Landing Fa":"LNS","id":"a61zr1447c4z","Name0":"Lancaster","County0":"Lancaster County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-76.2960968,40.12171555]}},{"properties":{"Total Enpl":281169.0,"State0":"NE","Landing Fa":"LNK","id":"a61zr1bguq4v","Name0":"Lincoln Municipal","County0":"Lancaster County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-96.75924683,40.85097122]}},{"properties":{"Total Enpl":359388.0,"State0":"OR","Landing Fa":"EUG","id":"a61zr1ftg8iu","Name0":"Mahlon Sweet Field","County0":"Lane County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-123.218689,44.1232605]}},{"properties":{"Total Enpl":300.0,"State0":"WY","Landing Fa":"82V","id":"a61zr14t1zto","Name0":"Pine Bluffs Municipal","County0":"Laramie County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-104.1302261,41.1533165]}},{"properties":{"Total Enpl":20520.0,"State0":"WY","Landing Fa":"CYS","id":"a61zr1gtms7t","Name0":"Cheyenne","County0":"Laramie County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-104.8118362,41.15572357]}},{"properties":{"Total Enpl":855.0,"State0":"CO","Landing Fa":"FNL","id":"a61zr1e4l4ue","Name0":"Fort Collins-Loveland Municipal","County0":"Larimer County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-105.0113373,40.451828]}},{"properties":{"Total Enpl":30991.0,"State0":"MS","Landing Fa":"MEI","id":"a61zr1ff9haf","Name0":"Key Field","County0":"Lauderdale County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-88.75120544,32.3331337]}},{"properties":{"Total Enpl":2512.0,"State0":"NM","Landing Fa":"HOB","id":"a61zr17lzgxo","Name0":"Lea County Regional","County0":"Lea County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-103.2170258,32.6875267]}},{"properties":{"Total Enpl":15494.0,"State0":"MS","Landing Fa":"TUP","id":"a61zr16joi14","Name0":"Tupelo Regional","County0":"Lee County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-88.76989746,34.26810837]}},{"properties":{"Total Enpl":2418587.0,"State0":"FL","Landing Fa":"RSW","id":"a61zr180nnjw","Name0":"Southwest Florida International","County0":"Lee County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.7551651,26.53616714]}},{"properties":{"Total Enpl":474462.0,"State0":"PA","Landing Fa":"ABE","id":"a61zr1fs02o9","Name0":"Lehigh Valley International","County0":"Lehigh County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-75.44039917,40.65236282]}},{"properties":{"Total Enpl":1229.0,"State0":"ID","Landing Fa":"SMN","id":"a61zr15m1zgl","Name0":"Lemhi County","County0":"Lemhi County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-113.8820114,45.12047958]}},{"properties":{"Total Enpl":13057.0,"State0":"NC","Landing Fa":"ISO","id":"a61zr152iena","Name0":"Kinston Regional Jetport At Stallings Field","County0":"Lenoir County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-77.61552429,35.32807922]}},{"properties":{"Total Enpl":454624.0,"State0":"FL","Landing Fa":"TLH","id":"a61zr17tpr20","Name0":"Tallahassee Regional","County0":"Leon County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-84.35033417,30.39652824]}},{"properties":{"Total Enpl":79166.0,"State0":"MT","Landing Fa":"HLN","id":"a61zr1afabkx","Name0":"Helena Regional","County0":"Lewis and Clark County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9827499,46.60681915]}},{"properties":{"Total Enpl":563557.0,"State0":"SC","Landing Fa":"CAE","id":"a61zr1gee0s7","Name0":"Columbia Metropolitan","County0":"Lexington County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.11953735,33.93883896]}},{"properties":{"Total Enpl":2699.0,"State0":"OR","Landing Fa":"ONP","id":"a61zr15nqz01","Name0":"Newport Municipal","County0":"Lincoln County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-124.0579147,44.58036041]}},{"properties":{"Total Enpl":297.0,"State0":"NM","Landing Fa":"SRR","id":"a61zr19ww45n","Name0":"Sierra Blanca Regional","County0":"Lincoln County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-105.5347519,33.46284866]}},{"properties":{"Total Enpl":8094.0,"State0":"NE","Landing Fa":"LBF","id":"a61zr14gvom1","Name0":"North Platte Regional Airport Lee Bird Field","County0":"Lincoln County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-100.6836548,41.12621307]}},{"properties":{"Total Enpl":464277.0,"State0":"IA","Landing Fa":"CID","id":"a61zr12y391h","Name0":"The Eastern Iowa","County0":"Linn County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-91.71086884,41.88459015]}},{"properties":{"Total Enpl":1923.0,"State0":"CA","Landing Fa":"VNY","id":"a61zr1b1xdud","Name0":"Van Nuys","County0":"Los Angeles County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-118.489975,34.20980835]}},{"properties":{"Total Enpl":455927.0,"State0":"CA","Landing Fa":"LGB","id":"a61zr1cax341","Name0":"Long Beach/Daugherty Field","County0":"Los Angeles County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-118.1516113,33.81772232]}},{"properties":{"Total Enpl":2376645.0,"State0":"CA","Landing Fa":"BUR","id":"a61zr1gx2vt0","Name0":"Burbank-Glendale-Pasadena","County0":"Los Angeles County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-118.3584976,34.20061874]}},{"properties":{"Total Enpl":436.0,"State0":"CA","Landing Fa":"SMO","id":"a61zr18i1fd9","Name0":"Santa Monica Municipal","County0":"Los Angeles County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-118.4512939,34.01582336]}},{"properties":{"Total Enpl":414.0,"State0":"CA","Landing Fa":"HHR","id":"a61zr14nqjqa","Name0":"Jack Northrop Field/Hawthorne Municipal","County0":"Los Angeles County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-118.3351898,33.92284012]}},{"properties":{"Total Enpl":30830915.0,"State0":"CA","Landing Fa":"LAX","id":"a61zr1hfefy1","Name0":"Los Angeles International","County0":"Los Angeles County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-118.4080734,33.9425354]}},{"properties":{"Total Enpl":9400078.0,"State0":"VA","Landing Fa":"IAD","id":"a61zr14cj5qr","Name0":"Washington Dulles International","County0":"Loudoun County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-77.45581055,38.94453049]}},{"properties":{"Total Enpl":32695.0,"State0":"GA","Landing Fa":"VLD","id":"a61zr1888rfl","Name0":"Valdosta Regional","County0":"Lowndes County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-83.27672577,30.78249931]}},{"properties":{"Total Enpl":44976.0,"State0":"MS","Landing Fa":"GTR","id":"a61zr13p92jx","Name0":"Golden Triangle Regional","County0":"Lowndes County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-88.59136963,33.45033264]}},{"properties":{"Total Enpl":565547.0,"State0":"TX","Landing Fa":"LBB","id":"a61zr15jl3d4","Name0":"Lubbock International","County0":"Lubbock County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-101.8227768,33.66363907]}},{"properties":{"Total Enpl":248017.0,"State0":"OH","Landing Fa":"TOL","id":"a61zr1hjrehb","Name0":"Toledo Express","County0":"Lucas County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-83.80783081,41.58680725]}},{"properties":{"Total Enpl":234292.0,"State0":"PA","Landing Fa":"AVP","id":"a61zr1cxa8ps","Name0":"Wilkes-Barre/Scranton International","County0":"Luzerne County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-75.72426605,41.33815002]}},{"properties":{"Total Enpl":46519.0,"State0":"PA","Landing Fa":"IPT","id":"a61zr1dunh5t","Name0":"Williamsport Regional","County0":"Lycoming County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-76.9210968,41.24183655]}},{"properties":{"Total Enpl":900.0,"State0":"MI","Landing Fa":"6Y1","id":"a61zr13bmx67","Name0":"Bois Blanc","County0":"Mackinac County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-84.50003815,45.76667786]}},{"properties":{"Total Enpl":24989.0,"State0":"IL","Landing Fa":"DEC","id":"a61zr17lctfa","Name0":"Decatur","County0":"Macon County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-88.86569214,39.83456421]}},{"properties":{"Total Enpl":514221.0,"State0":"AL","Landing Fa":"HSV","id":"a61zr1gsfkre","Name0":"Huntsville International-Carl T. Jones Field","County0":"Madison County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-86.77310944,34.64044571]}},{"properties":{"Total Enpl":1903.0,"State0":"NE","Landing Fa":"OFK","id":"a61zr1af6ey8","Name0":"Karl Stefan Memorial","County0":"Madison County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-97.435112,41.98546219]}},{"properties":{"Total Enpl":6671.0,"State0":"TN","Landing Fa":"MKL","id":"a61zr17acv42","Name0":"McKellar-Sipes Regional","County0":"Madison County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-88.9156189,35.59988022]}},{"properties":{"Total Enpl":407.0,"State0":"OH","Landing Fa":"38D","id":"a61zr1du5h2x","Name0":"Salem Airpark Inc","County0":"Mahoning County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-80.86269379,40.94822311]}},{"properties":{"Total Enpl":763215.0,"State0":"FL","Landing Fa":"SRQ","id":"a61zr19eqcih","Name0":"Sarasota/Bradenton International","County0":"Manatee County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-82.55410767,27.39533424]}},{"properties":{"Total Enpl":1281.0,"State0":"MI","Landing Fa":"MBL","id":"a61zr193keng","Name0":"Manistee County-Blacker","County0":"Manistee County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-86.24900055,44.27319717]}},{"properties":{"Total Enpl":142980.0,"State0":"WI","Landing Fa":"CWA","id":"a61zr1bonbtk","Name0":"Central Wisconsin","County0":"Marathon County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-89.66677856,44.77761841]}},{"properties":{"Total Enpl":16781835.0,"State0":"AZ","Landing Fa":"PHX","id":"a61zr16ohxf2","Name0":"Phoenix Sky Harbor International","County0":"Maricopa County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0080566,33.43416595]}},{"properties":{"Total Enpl":725.0,"State0":"AZ","Landing Fa":"DVT","id":"a61zr1gpsi3z","Name0":"Phoenix-Deer Valley Municipal","County0":"Maricopa County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0825577,33.68831635]}},{"properties":{"Total Enpl":12805.0,"State0":"AZ","Landing Fa":"SDL","id":"a61zr12pyna0","Name0":"Scottsdale","County0":"Maricopa County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9105301,33.62287521]}},{"properties":{"Total Enpl":564.0,"State0":"MO","Landing Fa":"HAE","id":"a61zr186hmi5","Name0":"Hannibal Municipal","County0":"Marion County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-91.44367981,39.72449112]}},{"properties":{"Total Enpl":16309.0,"State0":"OR","Landing Fa":"UAO","id":"a61zr1730dbb","Name0":"Aurora State","County0":"Marion County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.7700577,45.24713898]}},{"properties":{"Total Enpl":3736811.0,"State0":"IN","Landing Fa":"IND","id":"a61zr175grbt","Name0":"Indianapolis International","County0":"Marion County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-86.29438782,39.71733093]}},{"properties":{"Total Enpl":43200.0,"State0":"MI","Landing Fa":"SAW","id":"a61zr1apbw97","Name0":"Sawyer International","County0":"Marquette County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-87.39583588,46.35361099]}},{"properties":{"Total Enpl":300.0,"State0":"TN","Landing Fa":"LUG","id":"a61zr17efei5","Name0":"Ellington","County0":"Marshall County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-86.80388641,35.50697327]}},{"properties":{"Total Enpl":768.0,"State0":"MN","Landing Fa":"FRM","id":"a61zr188i3da","Name0":"Fairmont Municipal","County0":"Martin County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-94.4156189,43.64393997]}},{"properties":{"Total Enpl":287.0,"State0":"AK","Landing Fa":"SKW","id":"a61zr1f8l4k6","Name0":"Skwentna","County0":"Matanuska-Susitna Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-151.1913605,61.96529388]}},{"properties":{"Total Enpl":1595.0,"State0":"AK","Landing Fa":"UUO","id":"a61zr1b8rrem","Name0":"Willow","County0":"Matanuska-Susitna Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-150.0516663,61.75441742]}},{"properties":{"Total Enpl":683.0,"State0":"AK","Landing Fa":"PAQ","id":"a61zr1e7z8kx","Name0":"Palmer Municipal","County0":"Matanuska-Susitna Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-149.0888214,61.59474182]}},{"properties":{"Total Enpl":300.0,"State0":"AK","Landing Fa":"AZK","id":"a61zr1brotn2","Name0":"Skelton","County0":"Matanuska-Susitna Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-147.168869,61.93699646]}},{"properties":{"Total Enpl":13589.0,"State0":"AK","Landing Fa":"TKA","id":"a61zr1h066su","Name0":"Talkeetna","County0":"Matanuska-Susitna Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-150.093689,62.32049942]}},{"properties":{"Total Enpl":133877.0,"State0":"HI","Landing Fa":"MKK","id":"a61zr12cm2tf","Name0":"Molokai","County0":"Maui County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-157.0962524,21.15288544]}},{"properties":{"Total Enpl":82639.0,"State0":"HI","Landing Fa":"LNY","id":"a61zr1g0g7wp","Name0":"Lanai","County0":"Maui County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-156.951416,20.7856102]}},{"properties":{"Total Enpl":66531.0,"State0":"HI","Landing Fa":"JHM","id":"a61zr176popd","Name0":"Kapalua","County0":"Maui County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-156.6730347,20.9629364]}},{"properties":{"Total Enpl":4855.0,"State0":"HI","Landing Fa":"HNM","id":"a61zr1iajxdd","Name0":"Hana","County0":"Maui County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-156.0144348,20.79563904]}},{"properties":{"Total Enpl":2886173.0,"State0":"HI","Landing Fa":"OGG","id":"a61zr1afrl5l","Name0":"Kahului","County0":"Maui County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-156.4304504,20.89865112]}},{"properties":{"Total Enpl":26093.0,"State0":"PR","Landing Fa":"MAZ","id":"a61zr1a6glmt","Name0":"Eugenio Maria De Hostos","County0":"Mayaguez Municipio"},"type":"Feature","geometry":{"type":"Point","coordinates":[-67.14847565,18.25569534]}},{"properties":{"Total Enpl":13131.0,"State0":"PA","Landing Fa":"BFD","id":"a61zr1g72urp","Name0":"Bradford Regional","County0":"Mc Kean County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-78.64012146,41.80306625]}},{"properties":{"Total Enpl":26300.0,"State0":"KY","Landing Fa":"PAH","id":"a61zr18xf019","Name0":"Barkley Regional","County0":"McCracken County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-88.77375031,37.06083298]}},{"properties":{"Total Enpl":710.0,"State0":"IL","Landing Fa":"MQB","id":"a61zr126ri21","Name0":"Macomb Municipal","County0":"McDonough County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-90.65246582,40.52034378]}},{"properties":{"Total Enpl":250.0,"State0":"NM","Landing Fa":"ZUN","id":"a61zr17zu4i0","Name0":"Black Rock","County0":"McKinley County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-108.7917786,35.08322525]}},{"properties":{"Total Enpl":4201.0,"State0":"NM","Landing Fa":"GUP","id":"a61zr17h9hgi","Name0":"Gallup Municipal","County0":"McKinley County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-108.7893066,35.51105881]}},{"properties":{"Total Enpl":217596.0,"State0":"IL","Landing Fa":"BMI","id":"a61zr17gmjb4","Name0":"Central Illinois Regional Airport at Bloomington-Normal","County0":"McLean County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-88.91595459,40.47798538]}},{"properties":{"Total Enpl":67045.0,"State0":"TX","Landing Fa":"ACT","id":"a61zr1acnt09","Name0":"Waco Regional","County0":"McLennan County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-97.23052216,31.61128807]}},{"properties":{"Total Enpl":516.0,"State0":"MN","Landing Fa":"HCD","id":"a61zr1bulh18","Name0":"Hutchinson Municipal-Butler Field","County0":"McLeod County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-94.38179016,44.85890579]}},{"properties":{"Total Enpl":10618589.0,"State0":"NC","Landing Fa":"CLT","id":"a61zr161ruse","Name0":"Charlotte/Douglas International","County0":"Mecklenburg County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-80.94312286,35.21401215]}},{"properties":{"Total Enpl":3879.0,"State0":"CA","Landing Fa":"MCE","id":"a61zr190j7ir","Name0":"Merced Municipal/MacReady Field","County0":"Merced County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-120.5138855,37.284729]}},{"properties":{"Total Enpl":81001.0,"State0":"NJ","Landing Fa":"TTN","id":"a61zr1a9ms8g","Name0":"Trenton Mercer","County0":"Mercer County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-74.81346893,40.27669144]}},{"properties":{"Total Enpl":2269.0,"State0":"WV","Landing Fa":"BLF","id":"a61zr13hy52r","Name0":"Mercer County","County0":"Mercer County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.20768738,37.29579926]}},{"properties":{"Total Enpl":319.0,"State0":"NH","Landing Fa":"CON","id":"a61zr128p01v","Name0":"Concord Municipal","County0":"Merrimack County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-71.50228882,43.20273209]}},{"properties":{"Total Enpl":137793.0,"State0":"CO","Landing Fa":"GJT","id":"a61zr1b6qr4z","Name0":"Walker Field","County0":"Mesa County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-108.5267334,39.12241364]}},{"properties":{"Total Enpl":5162.0,"State0":"FL","Landing Fa":"X44","id":"a61zr1arjw8l","Name0":"Miami","County0":"Miami-Dade County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-80.17028046,25.77833366]}},{"properties":{"Total Enpl":16531295.0,"State0":"FL","Landing Fa":"MIA","id":"a61zr12exfjf","Name0":"Miami International","County0":"Miami-Dade County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-80.29055786,25.79324913]}},{"properties":{"Total Enpl":457.0,"State0":"CT","Landing Fa":"42B","id":"a61zr13ysobz","Name0":"Goodspeed","County0":"Middlesex County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-72.4556427,41.44565582]}},{"properties":{"Total Enpl":14743.0,"State0":"MA","Landing Fa":"BED","id":"a61zr1i7zfac","Name0":"Laurence G. Hanscom Field","County0":"Middlesex County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-71.28903198,42.46995163]}},{"properties":{"Total Enpl":485623.0,"State0":"TX","Landing Fa":"MAF","id":"a61zr158aq3j","Name0":"Midland International","County0":"Midland County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-102.2019119,31.94252777]}},{"properties":{"Total Enpl":738.0,"State0":"TX","Landing Fa":"MDD","id":"a61zr1idy94k","Name0":"Midland Airpark","County0":"Midland County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-102.1010284,32.03652573]}},{"properties":{"Total Enpl":46049.0,"State0":"AR","Landing Fa":"TXK","id":"a61zr15z9bcg","Name0":"Texarkana Regional-Webb Field","County0":"Miller County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-93.9910202,33.45370865]}},{"properties":{"Total Enpl":2962677.0,"State0":"WI","Landing Fa":"MKE","id":"a61zr1d1q8xh","Name0":"General Mitchell International","County0":"Milwaukee County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-87.89658356,42.94722366]}},{"properties":{"Total Enpl":6142.0,"State0":"WV","Landing Fa":"CBE","id":"a61zr1a9496a","Name0":"Greater Cumberland Regional","County0":"Mineral County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-78.76086426,39.61541748]}},{"properties":{"Total Enpl":357227.0,"State0":"SD","Landing Fa":"FSD","id":"a61zr1bxq8j3","Name0":"Joe Foss Field","County0":"Minnehaha County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-96.74169922,43.58135223]}},{"properties":{"Total Enpl":221292.0,"State0":"MT","Landing Fa":"MSO","id":"a61zr12iffkp","Name0":"Missoula International","County0":"Missoula County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-114.0905533,46.91630554]}},{"properties":{"Total Enpl":354459.0,"State0":"AL","Landing Fa":"MOB","id":"a61zr17ig5o3","Name0":"Mobile Regional","County0":"Mobile County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-88.242836,30.69141579]}},{"properties":{"Total Enpl":18093.0,"State0":"AZ","Landing Fa":"1G4","id":"a61zr14utvz8","Name0":"Grand Canyon West","County0":"Mohave County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-113.8166199,35.99221039]}},{"properties":{"Total Enpl":39931.0,"State0":"AZ","Landing Fa":"IFP","id":"a61zr1fjs3w3","Name0":"Laughlin/Bullhead International","County0":"Mohave County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-114.5595245,35.15739059]}},{"properties":{"Total Enpl":4360.0,"State0":"AZ","Landing Fa":"1Z1","id":"a61zr1hh9sp9","Name0":"Grand Canyon Bar Ten Airstrip","County0":"Mohave County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-113.2313232,36.25970459]}},{"properties":{"Total Enpl":9119.0,"State0":"AZ","Landing Fa":"HII","id":"a61zr1b157eb","Name0":"Lake Havasu City","County0":"Mohave County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-114.3561783,34.56816101]}},{"properties":{"Total Enpl":2574.0,"State0":"AZ","Landing Fa":"IGM","id":"a61zr18ghmey","Name0":"Kingman","County0":"Mohave County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-113.9380569,35.25947189]}},{"properties":{"Total Enpl":21561.0,"State0":"WV","Landing Fa":"MGW","id":"a61zr17jzld4","Name0":"Morgantown Municipal-Walter L. Bill Hart Field","County0":"Monongalia County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-79.91631317,39.64290619]}},{"properties":{"Total Enpl":1408.0,"State0":"IN","Landing Fa":"BMG","id":"a61zr1b4lh88","Name0":"Monroe County","County0":"Monroe County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-86.61668396,39.1460228]}},{"properties":{"Total Enpl":20169.0,"State0":"FL","Landing Fa":"MTH","id":"a61zr1er93tt","Name0":"The Florida Keys Marathon","County0":"Monroe County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.05137634,24.72614098]}},{"properties":{"Total Enpl":275909.0,"State0":"FL","Landing Fa":"EYW","id":"a61zr1eigkvo","Name0":"Key West International","County0":"Monroe County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.759552,24.55611038]}},{"properties":{"Total Enpl":1227154.0,"State0":"NY","Landing Fa":"ROC","id":"a61zr1a1vy7f","Name0":"Greater Rochester International","County0":"Monroe County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-77.67238617,43.11886597]}},{"properties":{"Total Enpl":258605.0,"State0":"CA","Landing Fa":"MRY","id":"a61zr17gr6z8","Name0":"Monterey Peninsula","County0":"Monterey County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-121.8429489,36.58698273]}},{"properties":{"Total Enpl":8220.0,"State0":"CO","Landing Fa":"CEZ","id":"a61zr1c13qdh","Name0":"Cortez Municipal","County0":"Montezuma County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-108.628067,37.30299759]}},{"properties":{"Total Enpl":2592.0,"State0":"AL","Landing Fa":"MXF","id":"a61zr1hg52ox","Name0":"Maxwell Air Force Base","County0":"Montgomery County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-86.36247253,32.37930298]}},{"properties":{"Total Enpl":231061.0,"State0":"AL","Landing Fa":"MGM","id":"a61zr18c27az","Name0":"Montgomery Regional-Dannelly Field","County0":"Montgomery County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-86.3939743,32.30064392]}},{"properties":{"Total Enpl":1115756.0,"State0":"OH","Landing Fa":"DAY","id":"a61zr19927hv","Name0":"James M. Cox Dayton International","County0":"Montgomery County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-84.21937561,39.90237427]}},{"properties":{"Total Enpl":70799.0,"State0":"CO","Landing Fa":"MTJ","id":"a61zr198rd6s","Name0":"Montrose Regional","County0":"Montrose County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-107.893837,38.50886536]}},{"properties":{"Total Enpl":20238.0,"State0":"NC","Landing Fa":"SOP","id":"a61zr15gr8l3","Name0":"Moore County","County0":"Moore County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-79.39116669,35.23735428]}},{"properties":{"Total Enpl":968.0,"State0":"NJ","Landing Fa":"MMU","id":"a61zr1i9xo4u","Name0":"Morristown Municipal","County0":"Morris County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-74.41487122,40.79935074]}},{"properties":{"Total Enpl":6749174.0,"State0":"OR","Landing Fa":"PDX","id":"a61zr1a9xqqp","Name0":"Portland International","County0":"Multnomah County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.5975037,45.58872223]}},{"properties":{"Total Enpl":93512.0,"State0":"GA","Landing Fa":"CSG","id":"a61zr1h7ly8o","Name0":"Columbus Metropolitan","County0":"Muscogee County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-84.93885803,32.51633453]}},{"properties":{"Total Enpl":46241.0,"State0":"MI","Landing Fa":"MKG","id":"a61zr13jpyxz","Name0":"Muskegon County","County0":"Muskegon County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-86.23822021,43.169487]}},{"properties":{"Total Enpl":289655.0,"State0":"MA","Landing Fa":"ACK","id":"a61zr1id5znk","Name0":"Nantucket Memorial","County0":"Nantucket County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-70.06018066,41.25305176]}},{"properties":{"Total Enpl":255.0,"State0":"CA","Landing Fa":"APC","id":"a61zr14ui2lg","Name0":"Napa County","County0":"Napa County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.2806931,38.2131958]}},{"properties":{"Total Enpl":7678.0,"State0":"NC","Landing Fa":"RWI","id":"a61zr17u22jx","Name0":"Rocky Mount-Wilson Regional","County0":"Nash County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-77.89295959,35.8549881]}},{"properties":{"Total Enpl":66184.0,"State0":"WY","Landing Fa":"CPR","id":"a61zr12ydr0m","Name0":"Natrona County International","County0":"Natrona County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-106.4644699,42.90835571]}},{"properties":{"Total Enpl":3905.0,"State0":"AZ","Landing Fa":"SOW","id":"a61zr1d7cidj","Name0":"Show Low Municipal","County0":"Navajo County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-110.0054092,34.26527023]}},{"properties":{"Total Enpl":44551.0,"State0":"DE","Landing Fa":"ILG","id":"a61zr1dowfsz","Name0":"New Castle County","County0":"New Castle County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-75.60652924,39.67872238]}},{"properties":{"Total Enpl":246790.0,"State0":"NC","Landing Fa":"ILM","id":"a61zr19pj94m","Name0":"Wilmington International","County0":"New Hanover County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-77.90255737,34.27061081]}},{"properties":{"Total Enpl":44883.0,"State0":"CT","Landing Fa":"HVN","id":"a61zr14er9wj","Name0":"Tweed-New Haven","County0":"New Haven County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-72.88710022,41.26390076]}},{"properties":{"Total Enpl":12292.0,"State0":"CT","Landing Fa":"GON","id":"a61zr1hpldf6","Name0":"Groton-New London","County0":"New London County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-72.0451355,41.33005905]}},{"properties":{"Total Enpl":546.0,"State0":"NY","Landing Fa":"JRB","id":"a61zr1ea9ebc","Name0":"Port Auth-Downtown-Manhattan/Wall St","County0":"New York County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00902557,40.70121384]}},{"properties":{"Total Enpl":217047.0,"State0":"VA","Landing Fa":"PHF","id":"a61zr1eidyal","Name0":"Newport News/Williamsburg International","County0":"Newport News City"},"type":"Feature","geometry":{"type":"Point","coordinates":[-76.49298859,37.13189697]}},{"properties":{"Total Enpl":67041.0,"State0":"ID","Landing Fa":"LWS","id":"a61zr18pskfg","Name0":"Lewiston-Nez Perce County","County0":"Nez Perce County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-117.0153961,46.37449646]}},{"properties":{"Total Enpl":2253.0,"State0":"NY","Landing Fa":"IAG","id":"a61zr1cn0vay","Name0":"Niagara Falls International","County0":"Niagara County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-78.94538116,43.10725784]}},{"properties":{"Total Enpl":8467.0,"State0":"AK","Landing Fa":"UNK","id":"a61zr14d6lrz","Name0":"Unalakleet","County0":"Nome Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-160.7989502,63.88835907]}},{"properties":{"Total Enpl":1756.0,"State0":"AK","Landing Fa":"38A","id":"a61zr16hfmz2","Name0":"Shaktoolik","County0":"Nome Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-161.2025299,64.36263275]}},{"properties":{"Total Enpl":56911.0,"State0":"AK","Landing Fa":"OME","id":"a61zr1hjuy0v","Name0":"Nome","County0":"Nome Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-165.4452515,64.5121994]}},{"properties":{"Total Enpl":1562.0,"State0":"AK","Landing Fa":"GLV","id":"a61zr19ogqox","Name0":"Golovin","County0":"Nome Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-163.0395203,64.54343414]}},{"properties":{"Total Enpl":1542.0,"State0":"AK","Landing Fa":"IWK","id":"a61zr1eld480","Name0":"Wales","County0":"Nome Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-168.0991669,65.62393951]}},{"properties":{"Total Enpl":1790.0,"State0":"AK","Landing Fa":"WMO","id":"a61zr17q6yl0","Name0":"White Mountain","County0":"Nome Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-163.4125519,64.68919373]}},{"properties":{"Total Enpl":4098.0,"State0":"AK","Landing Fa":"GAM","id":"a61zr1fcmq6v","Name0":"Gambell","County0":"Nome Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-171.7328186,63.76676559]}},{"properties":{"Total Enpl":2407.0,"State0":"AK","Landing Fa":"WBB","id":"a61zr1ckm9eb","Name0":"Stebbins","County0":"Nome Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-162.2827454,63.51591873]}},{"properties":{"Total Enpl":3866.0,"State0":"AK","Landing Fa":"SHH","id":"a61zr1hlygbd","Name0":"Shishmaref","County0":"Nome Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-166.0895538,66.24956512]}},{"properties":{"Total Enpl":4271.0,"State0":"AK","Landing Fa":"SVA","id":"a61zr1e2zgx8","Name0":"Savoonga","County0":"Nome Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-170.49263,63.68639374]}},{"properties":{"Total Enpl":2123.0,"State0":"AK","Landing Fa":"5S8","id":"a61zr1byi949","Name0":"Saint Michael","County0":"Nome Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-162.1103668,63.49005127]}},{"properties":{"Total Enpl":983.0,"State0":"AK","Landing Fa":"K54","id":"a61zr1b5vtmn","Name0":"Teller","County0":"Nome Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-166.3360138,65.24089813]}},{"properties":{"Total Enpl":2346.0,"State0":"AK","Landing Fa":"KKA","id":"a61zr19ja529","Name0":"Koyuk","County0":"Nome Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-161.1510773,64.9380722]}},{"properties":{"Total Enpl":1463.0,"State0":"AK","Landing Fa":"KTS","id":"a61zr1gb2eth","Name0":"Brevig Mission","County0":"Nome Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-166.4631653,65.33135986]}},{"properties":{"Total Enpl":2827.0,"State0":"AK","Landing Fa":"ELI","id":"a61zr16ogw92","Name0":"Elim","County0":"Nome Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-162.2700653,64.61400604]}},{"properties":{"Total Enpl":9773.0,"State0":"VA","Landing Fa":"NGU","id":"a61zr16ficxd","Name0":"Norfolk NS","County0":"Norfolk City"},"type":"Feature","geometry":{"type":"Point","coordinates":[-76.29022217,36.9373703]}},{"properties":{"Total Enpl":1494396.0,"State0":"VA","Landing Fa":"ORF","id":"a61zr1dukkqp","Name0":"Norfolk International","County0":"Norfolk City"},"type":"Feature","geometry":{"type":"Point","coordinates":[-76.20122528,36.89461136]}},{"properties":{"Total Enpl":40751.0,"State0":"AK","Landing Fa":"BRW","id":"a61zr1fr8m86","Name0":"Wiley Post-Will Rogers Memorial","County0":"North Slope Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-156.7660065,71.28544617]}},{"properties":{"Total Enpl":1962.0,"State0":"AK","Landing Fa":"PIZ","id":"a61zr15wuh3r","Name0":"Point Lay LRRS","County0":"North Slope Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-163.0053406,69.73287201]}},{"properties":{"Total Enpl":5533.0,"State0":"AK","Landing Fa":"PHO","id":"a61zr1etuvxh","Name0":"Point Hope","County0":"North Slope Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-166.7993011,68.34877777]}},{"properties":{"Total Enpl":3783.0,"State0":"AK","Landing Fa":"AWI","id":"a61zr1hs2p48","Name0":"Wainwright","County0":"North Slope Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-159.994751,70.63800049]}},{"properties":{"Total Enpl":1018.0,"State0":"AK","Landing Fa":"AQT","id":"a61zr137ocbz","Name0":"Nuiqsut","County0":"North Slope Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-151.0055542,70.20995331]}},{"properties":{"Total Enpl":1200.0,"State0":"AK","Landing Fa":"GBH","id":"a61zr1dypql9","Name0":"Galbraith Lake","County0":"North Slope Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-149.4900208,68.47906494]}},{"properties":{"Total Enpl":3653.0,"State0":"AK","Landing Fa":"AKP","id":"a61zr1ffc7qr","Name0":"Anaktuvuk Pass","County0":"North Slope Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-151.741684,68.13432312]}},{"properties":{"Total Enpl":12479.0,"State0":"AK","Landing Fa":"SCC","id":"a61zr12ol92s","Name0":"Deadhorse","County0":"North Slope Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-148.4651642,70.19475555]}},{"properties":{"Total Enpl":2686.0,"State0":"AK","Landing Fa":"ATK","id":"a61zr152undd","Name0":"Atqasuk Edward Burnell Sr. Memorial","County0":"North Slope Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-157.43573,70.46727753]}},{"properties":{"Total Enpl":2055.0,"State0":"AK","Landing Fa":"BTI","id":"a61zr1cw7p9i","Name0":"Barter Island LRRS","County0":"North Slope Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-143.5770416,70.1339035]}},{"properties":{"Total Enpl":4124.0,"State0":"AK","Landing Fa":"WTK","id":"a61zr1bc03kp","Name0":"Noatak","County0":"Northwest Arctic Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-162.9752808,67.56208038]}},{"properties":{"Total Enpl":9316.0,"State0":"AK","Landing Fa":"AED","id":"a61zr13iscxl","Name0":"Red Dog","County0":"Northwest Arctic Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-162.9029541,68.03128815]}},{"properties":{"Total Enpl":3153.0,"State0":"AK","Landing Fa":"BVK","id":"a61zr17dqfbz","Name0":"Buckland","County0":"Northwest Arctic Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-161.1519775,65.98228455]}},{"properties":{"Total Enpl":5176.0,"State0":"AK","Landing Fa":"WLK","id":"a61zr15da2x9","Name0":"Selawik","County0":"Northwest Arctic Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-159.9861908,66.60002899]}},{"properties":{"Total Enpl":992.0,"State0":"AK","Landing Fa":"OBU","id":"a61zr15aicyl","Name0":"Kobuk","County0":"Northwest Arctic Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-156.8610535,66.90917206]}},{"properties":{"Total Enpl":2309.0,"State0":"AK","Landing Fa":"SHG","id":"a61zr1ghbubz","Name0":"Shungnak","County0":"Northwest Arctic Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-157.1505127,66.88916779]}},{"properties":{"Total Enpl":3313.0,"State0":"AK","Landing Fa":"KVL","id":"a61zr14wba82","Name0":"Kivalina","County0":"Northwest Arctic Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-164.525589,67.74520874]}},{"properties":{"Total Enpl":2423.0,"State0":"AK","Landing Fa":"AFM","id":"a61zr13sl7h9","Name0":"Ambler","County0":"Northwest Arctic Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-157.8536224,67.10610199]}},{"properties":{"Total Enpl":3899.0,"State0":"AK","Landing Fa":"IAN","id":"a61zr14d9m6b","Name0":"Bob Baker Memorial","County0":"Northwest Arctic Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-160.4358673,66.97937775]}},{"properties":{"Total Enpl":59351.0,"State0":"AK","Landing Fa":"OTZ","id":"a61zr12g572u","Name0":"Ralph Wien Memorial","County0":"Northwest Arctic Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-162.5985565,66.88467407]}},{"properties":{"Total Enpl":5266.0,"State0":"AK","Landing Fa":"ORV","id":"a61zr1cdmdn6","Name0":"Robert (Bob) Curtis Memorial","County0":"Northwest Arctic Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-161.0277863,66.82852936]}},{"properties":{"Total Enpl":1473.0,"State0":"AK","Landing Fa":"DEE","id":"a61zr1f6gmjj","Name0":"Deering","County0":"Northwest Arctic Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-162.7666016,66.06820679]}},{"properties":{"Total Enpl":449672.0,"State0":"TX","Landing Fa":"CRP","id":"a61zr16qltbl","Name0":"Corpus Christi International","County0":"Nueces County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-97.50121307,27.77036095]}},{"properties":{"Total Enpl":8585.0,"State0":"MI","Landing Fa":"PTK","id":"a61zr199t8cy","Name0":"Oakland County International","County0":"Oakland County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-83.4187088,42.66520309]}},{"properties":{"Total Enpl":351935.0,"State0":"FL","Landing Fa":"VPS","id":"a61zr1aywizg","Name0":"Eglin Air Force Base","County0":"Okaloosa County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-86.52539825,30.48324966]}},{"properties":{"Total Enpl":1749450.0,"State0":"OK","Landing Fa":"OKC","id":"a61zr18e9y1f","Name0":"Will Rogers World","County0":"Oklahoma County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-97.6007309,35.39308929]}},{"properties":{"Total Enpl":152492.0,"State0":"MN","Landing Fa":"RST","id":"a61zr142vk58","Name0":"Rochester International","County0":"Olmsted County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-92.49798584,43.90882492]}},{"properties":{"Total Enpl":10901.0,"State0":"NY","Landing Fa":"UCA","id":"a61zr19akhn8","Name0":"Oneida County","County0":"Oneida County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-75.38385773,43.14511871]}},{"properties":{"Total Enpl":38651.0,"State0":"WI","Landing Fa":"RHI","id":"a61zr1fgt5f5","Name0":"Rhinelander-Oneida County","County0":"Oneida County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-89.467453,45.63119125]}},{"properties":{"Total Enpl":1088456.0,"State0":"NY","Landing Fa":"SYR","id":"a61zr1dx30nw","Name0":"Syracuse Hancock International","County0":"Onondaga County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-76.10630798,43.11118698]}},{"properties":{"Total Enpl":54722.0,"State0":"NC","Landing Fa":"OAJ","id":"a61zr17xof4i","Name0":"Albert J. Ellis","County0":"Onslow County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-77.61213684,34.8291626]}},{"properties":{"Total Enpl":258.0,"State0":"FL","Landing Fa":"ORL","id":"a61zr1gxyd9s","Name0":"Executive","County0":"Orange County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.33294678,28.5454731]}},{"properties":{"Total Enpl":307685.0,"State0":"NY","Landing Fa":"SWF","id":"a61zr151qysb","Name0":"Stewart International","County0":"Orange County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-74.10483551,41.50409317]}},{"properties":{"Total Enpl":14026868.0,"State0":"FL","Landing Fa":"MCO","id":"a61zr1i9k48v","Name0":"Orlando International","County0":"Orange County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.31602478,28.42888832]}},{"properties":{"Total Enpl":3739968.0,"State0":"CA","Landing Fa":"SNA","id":"a61zr1b3m7ev","Name0":"John Wayne Airport-Orange County","County0":"Orange County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-117.8682251,33.67565918]}},{"properties":{"Total Enpl":2217.0,"State0":"LA","Landing Fa":"NEW","id":"a61zr1b8ib27","Name0":"Lakefront","County0":"Orleans Parish"},"type":"Feature","geometry":{"type":"Point","coordinates":[-90.02825928,30.04242134]}},{"properties":{"Total Enpl":482.0,"State0":"FL","Landing Fa":"ISM","id":"a61zr1acnkg5","Name0":"Kissimmee Municipal","County0":"Osceola County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.43708038,28.28980637]}},{"properties":{"Total Enpl":3098.0,"State0":"NM","Landing Fa":"ALM","id":"a61zr1eibw04","Name0":"Alamogordo-White Sands Regional","County0":"Otero County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-105.9905853,32.83994293]}},{"properties":{"Total Enpl":855.0,"State0":"OH","Landing Fa":"3X5","id":"a61zr19xkxbn","Name0":"North Bass Island","County0":"Ottawa County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-82.82196808,41.71932602]}},{"properties":{"Total Enpl":10268.0,"State0":"OH","Landing Fa":"PCW","id":"a61zr1azkkuh","Name0":"Carl R. Keller Field","County0":"Ottawa County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-82.86869812,41.51627731]}},{"properties":{"Total Enpl":10795.0,"State0":"OH","Landing Fa":"3W2","id":"a61zr12loqbv","Name0":"Put In Bay","County0":"Ottawa County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-82.82833099,41.63674164]}},{"properties":{"Total Enpl":1807.0,"State0":"OH","Landing Fa":"3W9","id":"a61zr19btzev","Name0":"Middle Bass-East Point","County0":"Ottawa County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-82.7971344,41.69449234]}},{"properties":{"Total Enpl":404.0,"State0":"MI","Landing Fa":"3GM","id":"a61zr16xlhog","Name0":"Grand Haven Memorial Airpark","County0":"Ottawa County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-86.19816589,43.03404617]}},{"properties":{"Total Enpl":122412.0,"State0":"LA","Landing Fa":"MLU","id":"a61zr1bh996z","Name0":"Monroe Regional","County0":"Ouachita Parish"},"type":"Feature","geometry":{"type":"Point","coordinates":[-92.03768921,32.51086426]}},{"properties":{"Total Enpl":266629.0,"State0":"WI","Landing Fa":"ATW","id":"a61zr1304ff4","Name0":"Outagamie County Regional","County0":"Outagamie County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-88.51947784,44.25740814]}},{"properties":{"Total Enpl":360.0,"State0":"FL","Landing Fa":"F45","id":"a61zr15n23q8","Name0":"North Palm Beach County General Aviation","County0":"Palm Beach County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-80.22148132,26.84537315]}},{"properties":{"Total Enpl":2877039.0,"State0":"FL","Landing Fa":"PBI","id":"a61zr180gtmp","Name0":"Palm Beach International","County0":"Palm Beach County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-80.09559631,26.68316269]}},{"properties":{"Total Enpl":28326.0,"State0":"WY","Landing Fa":"COD","id":"a61zr1bc0nnc","Name0":"Yellowstone Regional","County0":"Park County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-109.0237961,44.52019501]}},{"properties":{"Total Enpl":1252.0,"State0":"MT","Landing Fa":"29S","id":"a61zr1e5y84w","Name0":"Gardiner","County0":"Park County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-110.7465973,45.04993439]}},{"properties":{"Total Enpl":1382.0,"State0":"OK","Landing Fa":"SWO","id":"a61zr1bbyslg","Name0":"Stillwater Regional","County0":"Payne County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-97.08576965,36.16025162]}},{"properties":{"Total Enpl":8854.0,"State0":"MN","Landing Fa":"TVF","id":"a61zr1bf0z8b","Name0":"Thief River Falls Regional","County0":"Pennington County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-96.18335724,48.06550217]}},{"properties":{"Total Enpl":195209.0,"State0":"SD","Landing Fa":"RAP","id":"a61zr1fo5wkh","Name0":"Rapid City Regional","County0":"Pennington County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-103.057373,44.04532242]}},{"properties":{"Total Enpl":349412.0,"State0":"ME","Landing Fa":"BGR","id":"a61zr1aumjg9","Name0":"Bangor International","County0":"Penobscot County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-68.82814026,44.80744553]}},{"properties":{"Total Enpl":311.0,"State0":"ME","Landing Fa":"1B0","id":"a61zr1c9896z","Name0":"Dexter Regional","County0":"Penobscot County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-69.23976898,45.00839615]}},{"properties":{"Total Enpl":571.0,"State0":"ME","Landing Fa":"06B","id":"a61zr1ambdu3","Name0":"Lucky Landing Marina And Seaplane Base","County0":"Penobscot County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-68.80503845,44.90701294]}},{"properties":{"Total Enpl":385.0,"State0":"IL","Landing Fa":"3MY","id":"a61zr1824xwj","Name0":"Mount Hawley Auxiliary","County0":"Peoria County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-89.61340332,40.79525757]}},{"properties":{"Total Enpl":219791.0,"State0":"IL","Landing Fa":"PIA","id":"a61zr19xbzkp","Name0":"Greater Peoria Regional","County0":"Peoria County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-89.69330597,40.66424179]}},{"properties":{"Total Enpl":509.0,"State0":"PA","Landing Fa":"PNE","id":"a61zr163xbmo","Name0":"Northeast Philadelphia","County0":"Philadelphia County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-75.0105896,40.08194351]}},{"properties":{"Total Enpl":11762140.0,"State0":"PA","Landing Fa":"PHL","id":"a61zr17u8zz2","Name0":"Philadelphia International","County0":"Philadelphia County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-75.24002838,39.87431717]}},{"properties":{"Total Enpl":9468.0,"State0":"WA","Landing Fa":"TCM","id":"a61zr131vtpk","Name0":"McChord Air Force Base","County0":"Pierce County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.4762344,47.13815308]}},{"properties":{"Total Enpl":351.0,"State0":"WA","Landing Fa":"TIW","id":"a61zr12ce54a","Name0":"Tacoma Narrows","County0":"Pierce County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.5781021,47.26793289]}},{"properties":{"Total Enpl":462.0,"State0":"AZ","Landing Fa":"DMA","id":"a61zr1afx48m","Name0":"Davis-Monthan Air Force Base","County0":"Pima County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-110.8831406,32.16646576]}},{"properties":{"Total Enpl":1781091.0,"State0":"AZ","Landing Fa":"TUS","id":"a61zr16dwofz","Name0":"Tucson International","County0":"Pima County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-110.9410248,32.11608505]}},{"properties":{"Total Enpl":381730.0,"State0":"FL","Landing Fa":"PIE","id":"a61zr1d5erqk","Name0":"Saint Petersburg-Clearwater International","County0":"Pinellas County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-82.68743896,27.91076279]}},{"properties":{"Total Enpl":215685.0,"State0":"CO","Landing Fa":"ASE","id":"a61zr1gpwx6d","Name0":"Aspen-Pitkin County/Sardy Field","County0":"Pitkin County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-106.8688431,39.22315979]}},{"properties":{"Total Enpl":43756.0,"State0":"NC","Landing Fa":"PGV","id":"a61zr17l1wp9","Name0":"Pitt-Greenville","County0":"Pitt County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-77.38532257,35.63523865]}},{"properties":{"Total Enpl":803.0,"State0":"CA","Landing Fa":"AUN","id":"a61zr1bh8jlc","Name0":"Auburn Municipal","County0":"Placer County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-121.082077,38.95476913]}},{"properties":{"Total Enpl":5760037.0,"State0":"MO","Landing Fa":"MCI","id":"a61zr1b0zlzz","Name0":"Kansas City International","County0":"Platte County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-94.71390533,39.29760361]}},{"properties":{"Total Enpl":849603.0,"State0":"IA","Landing Fa":"DSM","id":"a61zr1c929ba","Name0":"Des Moines International","County0":"Polk County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-93.66068268,41.534935]}},{"properties":{"Total Enpl":9234.0,"State0":"PR","Landing Fa":"PSE","id":"a61zr1ditpcz","Name0":"Mercedita","County0":"Ponce Municipio"},"type":"Feature","geometry":{"type":"Point","coordinates":[-66.56301117,18.00830078]}},{"properties":{"Total Enpl":437506.0,"State0":"TX","Landing Fa":"AMA","id":"a61zr18xxzjk","Name0":"Amarillo International","County0":"Potter County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-101.705925,35.2193718]}},{"properties":{"Total Enpl":46679.0,"State0":"ID","Landing Fa":"PIH","id":"a61zr1ef58ew","Name0":"Pocatello Regional","County0":"Power County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-112.5958633,42.91130447]}},{"properties":{"Total Enpl":2329.0,"State0":"MD","Landing Fa":"ADW","id":"a61zr19a5zzo","Name0":"Andrews Air Force Base","County0":"Prince George's County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-76.86702728,38.81080627]}},{"properties":{"Total Enpl":4170.0,"State0":"AK","Landing Fa":"HYL","id":"a61zr1gi5b2f","Name0":"Hollis","County0":"Prince of Wales-Outer Ketchikan Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-132.6460876,55.48158646]}},{"properties":{"Total Enpl":455.0,"State0":"AK","Landing Fa":"KXA","id":"a61zr15qijzh","Name0":"Kasaan","County0":"Prince of Wales-Outer Ketchikan Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-132.397522,55.53741455]}},{"properties":{"Total Enpl":5898.0,"State0":"AK","Landing Fa":"CGA","id":"a61zr1foh32y","Name0":"Craig","County0":"Prince of Wales-Outer Ketchikan Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-133.1477966,55.47883224]}},{"properties":{"Total Enpl":5210.0,"State0":"AK","Landing Fa":"KTB","id":"a61zr1cy3t4g","Name0":"Thorne Bay","County0":"Prince of Wales-Outer Ketchikan Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-132.5366821,55.68796158]}},{"properties":{"Total Enpl":705.0,"State0":"AK","Landing Fa":"KCC","id":"a61zr1giscas","Name0":"Coffman Cove","County0":"Prince of Wales-Outer Ketchikan Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-132.8419647,56.00324249]}},{"properties":{"Total Enpl":319.0,"State0":"AK","Landing Fa":"4Z7","id":"a61zr19hr1g6","Name0":"Hyder","County0":"Prince of Wales-Outer Ketchikan Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-130.0125275,55.90433884]}},{"properties":{"Total Enpl":2018.0,"State0":"AK","Landing Fa":"KWF","id":"a61zr1663hfw","Name0":"Waterfall","County0":"Prince of Wales-Outer Ketchikan Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-133.2433319,55.29632187]}},{"properties":{"Total Enpl":341.0,"State0":"AK","Landing Fa":"84K","id":"a61zr19uee3d","Name0":"Meyers Chuck","County0":"Prince of Wales-Outer Ketchikan Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-132.2550201,55.73963547]}},{"properties":{"Total Enpl":15387.0,"State0":"AK","Landing Fa":"MTM","id":"a61zr1ii97pg","Name0":"Metlakatla","County0":"Prince of Wales-Outer Ketchikan Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-131.578064,55.1310463]}},{"properties":{"Total Enpl":941.0,"State0":"AK","Landing Fa":"78K","id":"a61zr1aysy2j","Name0":"Yes Bay Lodge","County0":"Prince of Wales-Outer Ketchikan Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-131.8011322,55.91630173]}},{"properties":{"Total Enpl":3900.0,"State0":"AK","Landing Fa":"AKW","id":"a61zr1bx3uum","Name0":"Klawock","County0":"Prince of Wales-Outer Ketchikan Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-133.076004,55.57923508]}},{"properties":{"Total Enpl":1433.0,"State0":"CO","Landing Fa":"LAA","id":"a61zr13g7yih","Name0":"Lamar Municipal","County0":"Prowers County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-102.6884995,38.06969452]}},{"properties":{"Total Enpl":5656.0,"State0":"CO","Landing Fa":"PUB","id":"a61zr1gklihk","Name0":"Pueblo Memorial","County0":"Pueblo County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-104.4965744,38.28908539]}},{"properties":{"Total Enpl":1292507.0,"State0":"AR","Landing Fa":"LIT","id":"a61zr17zij33","Name0":"Adams Field","County0":"Pulaski County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-92.22424316,34.72939682]}},{"properties":{"Total Enpl":304.0,"State0":"AR","Landing Fa":"LRF","id":"a61zr1a5bpks","Name0":"Little Rock Air Force Base","County0":"Pulaski County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-92.14625549,34.9164772]}},{"properties":{"Total Enpl":6050.0,"State0":"MO","Landing Fa":"TBN","id":"a61zr1g94ixq","Name0":"Waynesville Regional Airport At Forney Field","County0":"Pulaski County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-92.14073944,37.74163055]}},{"properties":{"Total Enpl":15375183.0,"State0":"NY","Landing Fa":"JFK","id":"a61zr164xp36","Name0":"John F. Kennedy International","County0":"Queens County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-73.77744293,40.64253235]}},{"properties":{"Total Enpl":11968030.0,"State0":"NY","Landing Fa":"LGA","id":"a61zr178kj7r","Name0":"La Guardia","County0":"Queens County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-73.872612,40.77724457]}},{"properties":{"Total Enpl":3212.0,"State0":"WV","Landing Fa":"BKW","id":"a61zr18hzkzz","Name0":"Raleigh County Memorial","County0":"Raleigh County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.12416077,37.78732681]}},{"properties":{"Total Enpl":3194.0,"State0":"ND","Landing Fa":"DVL","id":"a61zr1ho8nvf","Name0":"Devils Lake Municipal","County0":"Ramsey County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-98.90877533,48.11424637]}},{"properties":{"Total Enpl":670251.0,"State0":"MS","Landing Fa":"JAN","id":"a61zr1hgkj8y","Name0":"Jackson International","County0":"Rankin County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-90.07588959,32.31116486]}},{"properties":{"Total Enpl":116006.0,"State0":"LA","Landing Fa":"AEX","id":"a61zr1fptmpp","Name0":"Alexandria International","County0":"Rapides Parish"},"type":"Feature","geometry":{"type":"Point","coordinates":[-92.54855347,31.3273716]}},{"properties":{"Total Enpl":2307.0,"State0":"NE","Landing Fa":"MCK","id":"a61zr1f4wuoo","Name0":"McCook Municipal","County0":"Red Willow County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-100.5918045,40.20639038]}},{"properties":{"Total Enpl":10074.0,"State0":"MT","Landing Fa":"SDY","id":"a61zr1cormf0","Name0":"Sidney-Richland Municipal","County0":"Richland County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-104.1925507,47.70685959]}},{"properties":{"Total Enpl":215556.0,"State0":"GA","Landing Fa":"AGS","id":"a61zr1e08ckt","Name0":"Augusta Regional At Bush Field","County0":"Richmond County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.9644928,33.36995316]}},{"properties":{"Total Enpl":19908.0,"State0":"KS","Landing Fa":"MHK","id":"a61zr1d75k2p","Name0":"Manhattan Regional","County0":"Riley County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-96.67082977,39.14096832]}},{"properties":{"Total Enpl":7094.0,"State0":"CA","Landing Fa":"RIV","id":"a61zr13ir6ny","Name0":"March Field","County0":"Riverside County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-117.2594833,33.88057327]}},{"properties":{"Total Enpl":3528.0,"State0":"CA","Landing Fa":"F70","id":"a61zr16eslol","Name0":"French Valley","County0":"Riverside County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-117.1279755,33.57605743]}},{"properties":{"Total Enpl":645926.0,"State0":"CA","Landing Fa":"PSP","id":"a61zr1eubl0d","Name0":"Palm Springs International","County0":"Riverside County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-116.5062561,33.829216]}},{"properties":{"Total Enpl":346365.0,"State0":"VA","Landing Fa":"ROA","id":"a61zr12ytoc5","Name0":"Roanoke Regional/Woodrum Field","County0":"Roanoke City"},"type":"Feature","geometry":{"type":"Point","coordinates":[-79.97542572,37.32546997]}},{"properties":{"Total Enpl":378616.0,"State0":"IL","Landing Fa":"MLI","id":"a61zr15ihef8","Name0":"Quad City International","County0":"Rock Island County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-90.50753784,41.44852829]}},{"properties":{"Total Enpl":550.0,"State0":"NY","Landing Fa":"H43","id":"a61zr146pqim","Name0":"Haverstraw","County0":"Rockland County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96929169,41.21092606]}},{"properties":{"Total Enpl":1780.0,"State0":"MT","Landing Fa":"OLF","id":"a61zr1668msa","Name0":"L. M. Clayton","County0":"Roosevelt County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-105.5750504,48.09451675]}},{"properties":{"Total Enpl":1153.0,"State0":"MT","Landing Fa":"42S","id":"a61zr1gimrfo","Name0":"Poplar","County0":"Roosevelt County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-105.1821899,48.11595917]}},{"properties":{"Total Enpl":108797.0,"State0":"CO","Landing Fa":"HDN","id":"a61zr15nvs8b","Name0":"Yampa Valley","County0":"Routt County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-107.217659,40.4811821]}},{"properties":{"Total Enpl":563.0,"State0":"TN","Landing Fa":"MQY","id":"a61zr1499ua0","Name0":"Smyrna","County0":"Rutherford County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-86.52007294,36.0089798]}},{"properties":{"Total Enpl":3628.0,"State0":"VT","Landing Fa":"RUT","id":"a61zr12zdqkc","Name0":"Rutland State","County0":"Rutland County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-72.94961548,43.52990723]}},{"properties":{"Total Enpl":3783566.0,"State0":"CA","Landing Fa":"SMF","id":"a61zr19lja9b","Name0":"Sacramento International","County0":"Sacramento County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-121.5907669,38.69542313]}},{"properties":{"Total Enpl":634.0,"State0":"CA","Landing Fa":"SAC","id":"a61zr17kmjm1","Name0":"Sacramento Executive","County0":"Sacramento County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-121.4934692,38.51252365]}},{"properties":{"Total Enpl":294483.0,"State0":"MI","Landing Fa":"MBS","id":"a61zr1av5ylf","Name0":"MBS International","County0":"Saginaw County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-84.07965088,43.53291321]}},{"properties":{"Total Enpl":1818.0,"State0":"IL","Landing Fa":"BLV","id":"a61zr19bkguc","Name0":"Scott Air Force Base/Midamerica","County0":"Saint Clair County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-89.83518219,38.54517746]}},{"properties":{"Total Enpl":388.0,"State0":"IL","Landing Fa":"CPS","id":"a61zr1g7xscp","Name0":"Saint Louis Downtown-Parks","County0":"Saint Clair County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-90.15621948,38.57072449]}},{"properties":{"Total Enpl":233647.0,"State0":"VI","Landing Fa":"STX","id":"a61zr1cjh9ut","Name0":"Henry E. Rohlsen","County0":"Saint Croix (County Equivalent)"},"type":"Feature","geometry":{"type":"Point","coordinates":[-64.79855347,17.70188713]}},{"properties":{"Total Enpl":485602.0,"State0":"IN","Landing Fa":"SBN","id":"a61zr1ajch5a","Name0":"South Bend Regional","County0":"Saint Joseph County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-86.31847382,41.70895386]}},{"properties":{"Total Enpl":4110.0,"State0":"NY","Landing Fa":"MSS","id":"a61zr1f4sosy","Name0":"Massena International-Richards Field","County0":"Saint Lawrence County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-74.84554291,44.93582535]}},{"properties":{"Total Enpl":2659.0,"State0":"NY","Landing Fa":"OGS","id":"a61zr1avwrup","Name0":"Ogdensburg International","County0":"Saint Lawrence County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-75.46549988,44.68185425]}},{"properties":{"Total Enpl":15709.0,"State0":"MN","Landing Fa":"HIB","id":"a61zr1fxzb7m","Name0":"Chisholm-Hibbing","County0":"Saint Louis County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-92.83899689,47.38660049]}},{"properties":{"Total Enpl":10720.0,"State0":"MO","Landing Fa":"SUS","id":"a61zr12poqb7","Name0":"Spirit Of Saint Louis","County0":"Saint Louis County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-90.65122986,38.66186905]}},{"properties":{"Total Enpl":1686.0,"State0":"MN","Landing Fa":"ELO","id":"a61zr1342lns","Name0":"Ely Municipal","County0":"Saint Louis County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-91.83073425,47.82454681]}},{"properties":{"Total Enpl":140835.0,"State0":"MN","Landing Fa":"DLH","id":"a61zr1c1w4rb","Name0":"Duluth International","County0":"Saint Louis County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-92.19364929,46.84209061]}},{"properties":{"Total Enpl":15075992.0,"State0":"MO","Landing Fa":"STL","id":"a61zr1axfe2k","Name0":"Lambert-St. Louis International","County0":"Saint Louis County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-90.35999298,38.74768829]}},{"properties":{"Total Enpl":2250.0,"State0":"MD","Landing Fa":"NUI","id":"a61zr1esk5x7","Name0":"Webster Nolf","County0":"Saint Marys County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-76.42856598,38.14595795]}},{"properties":{"Total Enpl":529705.0,"State0":"VI","Landing Fa":"STT","id":"a61zr1hwp93k","Name0":"Cyril E. King","County0":"Saint Thomas (County Equivalent)"},"type":"Feature","geometry":{"type":"Point","coordinates":[-64.97335815,18.33730507]}},{"properties":{"Total Enpl":15978.0,"State0":"KS","Landing Fa":"SLN","id":"a61zr1e21fuc","Name0":"Salina Municipal","County0":"Saline County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-97.65060425,38.79148102]}},{"properties":{"Total Enpl":9453726.0,"State0":"UT","Landing Fa":"SLC","id":"a61zr1hrf77p","Name0":"Salt Lake City International","County0":"Salt Lake County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9777756,40.7883873]}},{"properties":{"Total Enpl":1363.0,"State0":"CA","Landing Fa":"SBD","id":"a61zr177gu0h","Name0":"San Bernardino International","County0":"San Bernardino County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-117.2348709,34.09535217]}},{"properties":{"Total Enpl":45251.0,"State0":"CA","Landing Fa":"VCV","id":"a61zr126do6t","Name0":"Southern California Logistics","County0":"San Bernardino County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-117.3794632,34.59322357]}},{"properties":{"Total Enpl":3125592.0,"State0":"CA","Landing Fa":"ONT","id":"a61zr17nfk8u","Name0":"Ontario International","County0":"San Bernardino County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-117.6011963,34.05599976]}},{"properties":{"Total Enpl":6081.0,"State0":"CA","Landing Fa":"NZY","id":"a61zr14n80fw","Name0":"North Island Naval Air Station/Halsey Field","County0":"San Diego County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-117.2153091,32.69921875]}},{"properties":{"Total Enpl":7636623.0,"State0":"CA","Landing Fa":"SAN","id":"a61zr15ooqvy","Name0":"San Diego International-Lindbergh Field","County0":"San Diego County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-117.1896591,32.73355484]}},{"properties":{"Total Enpl":10642.0,"State0":"CA","Landing Fa":"MYF","id":"a61zr1ajzhb0","Name0":"Montgomery Field","County0":"San Diego County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-117.1395645,32.81573486]}},{"properties":{"Total Enpl":78364.0,"State0":"CA","Landing Fa":"CRQ","id":"a61zr1ett3dz","Name0":"McClellan-Palomar","County0":"San Diego County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-117.28022,33.12822342]}},{"properties":{"Total Enpl":1107.0,"State0":"CA","Landing Fa":"NKX","id":"a61zr122zaui","Name0":"Miramar Marine Corps Air Station/Mitscher Field","County0":"San Diego County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-117.1425323,32.8683815]}},{"properties":{"Total Enpl":435.0,"State0":"CA","Landing Fa":"O20","id":"a61zr18837rr","Name0":"Kingdon Airpark","County0":"San Joaquin County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-121.3593903,38.09158707]}},{"properties":{"Total Enpl":7362.0,"State0":"UT","Landing Fa":"71V","id":"a61zr17eg15i","Name0":"Monument Valley","County0":"San Juan County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-110.2006836,37.01666641]}},{"properties":{"Total Enpl":2620.0,"State0":"WA","Landing Fa":"W49","id":"a61zr19ap5xx","Name0":"Rosario","County0":"San Juan County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.8679581,48.6456604]}},{"properties":{"Total Enpl":16161.0,"State0":"WA","Landing Fa":"FHR","id":"a61zr1bafqvt","Name0":"Friday Harbor","County0":"San Juan County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-123.0243607,48.52197266]}},{"properties":{"Total Enpl":4546.0,"State0":"WA","Landing Fa":"W33","id":"a61zr1f0yl30","Name0":"Friday Harbor","County0":"San Juan County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-123.0096207,48.537323]}},{"properties":{"Total Enpl":3330.0,"State0":"WA","Landing Fa":"9S1","id":"a61zr1gm415l","Name0":"Roche Harbor","County0":"San Juan County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-123.1385193,48.61231995]}},{"properties":{"Total Enpl":3877.0,"State0":"WA","Landing Fa":"S31","id":"a61zr1d9oazq","Name0":"Lopez Island","County0":"San Juan County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.9368439,48.48260117]}},{"properties":{"Total Enpl":53538.0,"State0":"NM","Landing Fa":"FMN","id":"a61zr13ohmlw","Name0":"Four Corners Regional","County0":"San Juan County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-108.2299423,36.74124908]}},{"properties":{"Total Enpl":1423.0,"State0":"WA","Landing Fa":"WA83","id":"a61zr1b8erco","Name0":"Westsound","County0":"San Juan County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.9526825,48.61788177]}},{"properties":{"Total Enpl":10446.0,"State0":"WA","Landing Fa":"ORS","id":"a61zr16tjv2d","Name0":"Orcas Island","County0":"San Juan County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.9137955,48.7081604]}},{"properties":{"Total Enpl":6112.0,"State0":"PR","Landing Fa":"SIG","id":"a61zr1964akf","Name0":"Fernando Luis Ribas Dominicci","County0":"San Juan Municipio"},"type":"Feature","geometry":{"type":"Point","coordinates":[-66.09883118,18.45675087]}},{"properties":{"Total Enpl":260.0,"State0":"CA","Landing Fa":"PRB","id":"a61zr1expe3q","Name0":"Paso Robles Municipal","County0":"San Luis Obispo County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-120.6270523,35.67288589]}},{"properties":{"Total Enpl":147028.0,"State0":"CA","Landing Fa":"SBP","id":"a61zr13xxarv","Name0":"San Luis Obispo County-McChesney Field","County0":"San Luis Obispo County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-120.642395,35.23705673]}},{"properties":{"Total Enpl":834.0,"State0":"CA","Landing Fa":"PAO","id":"a61zr13gxe7u","Name0":"Palo Alto Airport Of Santa Clara County","County0":"San Mateo County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.1150436,37.46112061]}},{"properties":{"Total Enpl":19249988.0,"State0":"CA","Landing Fa":"SFO","id":"a61zr1g4hw3h","Name0":"San Francisco International","County0":"San Mateo County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.3748398,37.6190033]}},{"properties":{"Total Enpl":379.0,"State0":"CA","Landing Fa":"SQL","id":"a61zr1hm3b97","Name0":"San Carlos","County0":"San Mateo County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.249527,37.51185608]}},{"properties":{"Total Enpl":22483.0,"State0":"CO","Landing Fa":"TEX","id":"a61zr1c8v0rr","Name0":"Telluride Regional","County0":"San Miguel County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-107.9084778,37.95375824]}},{"properties":{"Total Enpl":80755.0,"State0":"IL","Landing Fa":"SPI","id":"a61zr1gz2pvr","Name0":"Capital","County0":"Sangamon County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-89.67761993,39.84395218]}},{"properties":{"Total Enpl":44591.0,"State0":"CA","Landing Fa":"SMX","id":"a61zr13ipt4x","Name0":"Santa Maria Public/Captain G. Allan Hancock Field","County0":"Santa Barbara County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-120.4575806,34.89925003]}},{"properties":{"Total Enpl":407737.0,"State0":"CA","Landing Fa":"SBA","id":"a61zr12tj9p7","Name0":"Santa Barbara Municipal","County0":"Santa Barbara County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-119.8403702,34.42621231]}},{"properties":{"Total Enpl":655.0,"State0":"CA","Landing Fa":"VBG","id":"a61zr1585aue","Name0":"Vandenberg Air Force Base","County0":"Santa Barbara County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-120.5768356,34.729702]}},{"properties":{"Total Enpl":941.0,"State0":"CA","Landing Fa":"LPC","id":"a61zr1adg4z2","Name0":"Lompoc","County0":"Santa Barbara County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-120.4667892,34.66561127]}},{"properties":{"Total Enpl":5582359.0,"State0":"CA","Landing Fa":"SJC","id":"a61zr1g76w1j","Name0":"San Jose International","County0":"Santa Clara County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-121.9290085,37.36186218]}},{"properties":{"Total Enpl":26178.0,"State0":"NM","Landing Fa":"SAF","id":"a61zr168szp5","Name0":"Santa Fe Municipal","County0":"Santa Fe County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-106.0881424,35.61677933]}},{"properties":{"Total Enpl":10390.0,"State0":"MO","Landing Fa":"CGI","id":"a61zr18zbd5j","Name0":"Cape Girardeau Regional","County0":"Scott County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-89.570755,37.22531509]}},{"properties":{"Total Enpl":12219.0,"State0":"NE","Landing Fa":"BFF","id":"a61zr12a9o5f","Name0":"Western Nebraska Regional/William B. Heilig Field","County0":"Scotts Bluff County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-103.5956421,41.87402725]}},{"properties":{"Total Enpl":102583.0,"State0":"AR","Landing Fa":"FSM","id":"a61zr13lft71","Name0":"Fort Smith Regional","County0":"Sebastian County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-94.36743927,35.33658981]}},{"properties":{"Total Enpl":595316.0,"State0":"KS","Landing Fa":"ICT","id":"a61zr1gx34wf","Name0":"Wichita Mid-Continent","County0":"Sedgwick County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-97.43304443,37.64995956]}},{"properties":{"Total Enpl":1319.0,"State0":"KS","Landing Fa":"AAO","id":"a61zr1g5mobd","Name0":"Colonel James Jabara","County0":"Sedgwick County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-97.221138,37.74755478]}},{"properties":{"Total Enpl":426570.0,"State0":"FL","Landing Fa":"SFB","id":"a61zr1fx5cgk","Name0":"Orlando Sanford","County0":"Seminole County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.23748779,28.77763939]}},{"properties":{"Total Enpl":7318.0,"State0":"KS","Landing Fa":"LBL","id":"a61zr1drdj19","Name0":"Liberal Municipal","County0":"Seward County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-100.9598618,37.04420853]}},{"properties":{"Total Enpl":74606.0,"State0":"CA","Landing Fa":"RDD","id":"a61zr19k7qrb","Name0":"Redding Municipal","County0":"Shasta County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.2934036,40.50898361]}},{"properties":{"Total Enpl":11157.0,"State0":"KS","Landing Fa":"FOE","id":"a61zr183ly9d","Name0":"Forbes Field","County0":"Shawnee County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-95.66361237,38.95095062]}},{"properties":{"Total Enpl":5211305.0,"State0":"TN","Landing Fa":"MEM","id":"a61zr1hnup94","Name0":"Memphis International","County0":"Shelby County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-89.97666931,35.04241562]}},{"properties":{"Total Enpl":25439.0,"State0":"MN","Landing Fa":"STC","id":"a61zr1cr4kgr","Name0":"Saint Cloud Regional","County0":"Sherburne County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-94.05833435,45.54532242]}},{"properties":{"Total Enpl":15052.0,"State0":"WY","Landing Fa":"SHR","id":"a61zr17czh0u","Name0":"Sheridan County","County0":"Sheridan County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-106.980278,44.76919556]}},{"properties":{"Total Enpl":1079.0,"State0":"KS","Landing Fa":"GLD","id":"a61zr18j6uef","Name0":"Renner Field/Goodland Municipal","County0":"Sherman County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-101.6989899,39.37062073]}},{"properties":{"Total Enpl":508.0,"State0":"MI","Landing Fa":"5D3","id":"a61zr18uk1ur","Name0":"Owosso Community","County0":"Shiawassee County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-84.13891602,42.99297333]}},{"properties":{"Total Enpl":47963.0,"State0":"MT","Landing Fa":"BTM","id":"a61zr1ew98im","Name0":"Bert Mooney","County0":"Silver Bow County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-112.4974594,45.95479584]}},{"properties":{"Total Enpl":68659.0,"State0":"AK","Landing Fa":"SIT","id":"a61zr137xj5d","Name0":"Sitka Rocky Gutierrez","County0":"Sitka Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-135.3616028,57.04713821]}},{"properties":{"Total Enpl":11376.0,"State0":"WA","Landing Fa":"74S","id":"a61zr1ekg45e","Name0":"Anacortes","County0":"Skagit County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.6623993,48.49899292]}},{"properties":{"Total Enpl":9126.0,"State0":"AK","Landing Fa":"HNH","id":"a61zr12fmccv","Name0":"Hoonah","County0":"Skagway-Hoonah-Angoon Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-135.4096985,58.09609222]}},{"properties":{"Total Enpl":1073.0,"State0":"AK","Landing Fa":"HWI","id":"a61zr15xw9nh","Name0":"Hawk Inlet","County0":"Skagway-Hoonah-Angoon Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-134.7559509,58.12744141]}},{"properties":{"Total Enpl":2865.0,"State0":"AK","Landing Fa":"AGN","id":"a61zr1663zx9","Name0":"Angoon","County0":"Skagway-Hoonah-Angoon Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-134.5850983,57.5035553]}},{"properties":{"Total Enpl":36554.0,"State0":"AK","Landing Fa":"SGY","id":"a61zr16n0fga","Name0":"Skagway","County0":"Skagway-Hoonah-Angoon Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-135.3156586,59.46006012]}},{"properties":{"Total Enpl":1022.0,"State0":"AK","Landing Fa":"PEC","id":"a61zr1docb39","Name0":"Pelican","County0":"Skagway-Hoonah-Angoon Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-136.2362671,57.95517349]}},{"properties":{"Total Enpl":11570.0,"State0":"AK","Landing Fa":"GST","id":"a61zr19yep6f","Name0":"Gustavus","County0":"Skagway-Hoonah-Angoon Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-135.7073822,58.42438126]}},{"properties":{"Total Enpl":303.0,"State0":"AK","Landing Fa":"FNR","id":"a61zr16lsx3h","Name0":"Funter Bay","County0":"Skagway-Hoonah-Angoon Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-134.8979034,58.2543869]}},{"properties":{"Total Enpl":1972.0,"State0":"AK","Landing Fa":"EXI","id":"a61zr18lxuuy","Name0":"Excursion Inlet","County0":"Skagway-Hoonah-Angoon Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-135.4490356,58.42049789]}},{"properties":{"Total Enpl":1072.0,"State0":"AK","Landing Fa":"TKE","id":"a61zr1hua4nv","Name0":"Tenakee","County0":"Skagway-Hoonah-Angoon Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-135.2184448,57.77965927]}},{"properties":{"Total Enpl":1325.0,"State0":"AK","Landing Fa":"ELV","id":"a61zr1eqqvu4","Name0":"Elfin Cove","County0":"Skagway-Hoonah-Angoon Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-136.3473969,58.1951828]}},{"properties":{"Total Enpl":74233.0,"State0":"TX","Landing Fa":"TYR","id":"a61zr1e9jz6s","Name0":"Tyler Pounds Field","County0":"Smith County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-95.40238953,32.35413742]}},{"properties":{"Total Enpl":302.0,"State0":"WA","Landing Fa":"1S2","id":"a61zr13r0bjd","Name0":"Darrington Municipal","County0":"Snohomish County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-121.6095734,48.25816345]}},{"properties":{"Total Enpl":2392.0,"State0":"CA","Landing Fa":"SUU","id":"a61zr19c37fe","Name0":"Travis Air Force Base","County0":"Solano County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-121.9274597,38.2626915]}},{"properties":{"Total Enpl":1021.0,"State0":"NJ","Landing Fa":"39N","id":"a61zr14cb2ic","Name0":"Princeton","County0":"Somerset County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-74.6576004,40.39834976]}},{"properties":{"Total Enpl":30066.0,"State0":"CA","Landing Fa":"STS","id":"a61zr149kor2","Name0":"Sonoma County","County0":"Sonoma County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.8128815,38.50897598]}},{"properties":{"Total Enpl":483.0,"State0":"AK","Landing Fa":"EAA","id":"a61zr1ia92kv","Name0":"Eagle","County0":"Southeast Fairbanks Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-141.1509247,64.77639008]}},{"properties":{"Total Enpl":787.0,"State0":"AK","Landing Fa":"5TE","id":"a61zr16dcc9m","Name0":"Tetlin","County0":"Southeast Fairbanks Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-142.5219269,63.13382339]}},{"properties":{"Total Enpl":1816.0,"State0":"AK","Landing Fa":"TKJ","id":"a61zr1f6r3c6","Name0":"Tok","County0":"Southeast Fairbanks Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-143.0061188,63.29548264]}},{"properties":{"Total Enpl":753892.0,"State0":"SC","Landing Fa":"GSP","id":"a61zr1cuocej","Name0":"Greenville-Spartanburg International","County0":"Spartanburg County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-82.21885681,34.89566803]}},{"properties":{"Total Enpl":1516688.0,"State0":"WA","Landing Fa":"GEG","id":"a61zr13cbr6w","Name0":"Spokane International","County0":"Spokane County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-117.533844,47.61985397]}},{"properties":{"Total Enpl":28314.0,"State0":"CA","Landing Fa":"MOD","id":"a61zr1c34bpl","Name0":"Modesto City-County-Harry Sham Field","County0":"Stanislaus County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-120.954422,37.62581635]}},{"properties":{"Total Enpl":3733.0,"State0":"ND","Landing Fa":"DIK","id":"a61zr1cxhr5o","Name0":"Dickinson Municipal","County0":"Stark County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-102.8019562,46.79738998]}},{"properties":{"Total Enpl":3003.0,"State0":"ND","Landing Fa":"JMS","id":"a61zr1f491de","Name0":"Jamestown Municipal","County0":"Stutsman County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-98.67819214,46.92971802]}},{"properties":{"Total Enpl":13183145.0,"State0":"MA","Landing Fa":"BOS","id":"a61zr16ss42m","Name0":"General Edward Lawrence Logan International","County0":"Suffolk County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-71.00518036,42.36434937]}},{"properties":{"Total Enpl":407.0,"State0":"NY","Landing Fa":"0B8","id":"a61zr19oc36k","Name0":"Elizabeth Field","County0":"Suffolk County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-72.03160858,41.25130844]}},{"properties":{"Total Enpl":2147.0,"State0":"NY","Landing Fa":"FRG","id":"a61zr19a7ley","Name0":"Republic","County0":"Suffolk County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-73.41340637,40.72878265]}},{"properties":{"Total Enpl":942379.0,"State0":"NY","Landing Fa":"ISP","id":"a61zr14vxwf7","Name0":"Long Island MacArthur","County0":"Suffolk County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-73.1002121,40.79524231]}},{"properties":{"Total Enpl":221228.0,"State0":"TN","Landing Fa":"TRI","id":"a61zr17x9m62","Name0":"Tri-Cities Regional TN/VA","County0":"Sullivan County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-82.4074173,36.47521591]}},{"properties":{"Total Enpl":369965.0,"State0":"OH","Landing Fa":"CAK","id":"a61zr16f4ffa","Name0":"Akron-Canton Regional","County0":"Summit County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.44246674,40.91631317]}},{"properties":{"Total Enpl":387.0,"State0":"SC","Landing Fa":"SSC","id":"a61zr168kcr0","Name0":"Shaw Air Force Base","County0":"Sumter County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-80.47286224,33.97293091]}},{"properties":{"Total Enpl":10311.0,"State0":"WY","Landing Fa":"RKS","id":"a61zr1ens4zs","Name0":"Rock Springs-Sweetwater County","County0":"Sweetwater County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-109.0651932,41.59421921]}},{"properties":{"Total Enpl":27990212.0,"State0":"TX","Landing Fa":"DFW","id":"a61zr1g5yc7c","Name0":"Dallas/Fort Worth International","County0":"Tarrant County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-97.03720093,32.89595032]}},{"properties":{"Total Enpl":1389.0,"State0":"TX","Landing Fa":"FTW","id":"a61zr14mevw6","Name0":"Fort Worth Meacham International","County0":"Tarrant County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-97.36244202,32.81977844]}},{"properties":{"Total Enpl":47984.0,"State0":"TX","Landing Fa":"ABI","id":"a61zr18tprd0","Name0":"Abilene Regional","County0":"Taylor County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-99.68190002,32.41131973]}},{"properties":{"Total Enpl":165595.0,"State0":"WY","Landing Fa":"JAC","id":"a61zr1bp2s2q","Name0":"Jackson Hole","County0":"Teton County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-110.7377396,43.60732269]}},{"properties":{"Total Enpl":349.0,"State0":"OK","Landing Fa":"GUY","id":"a61zr13z7roz","Name0":"Guymon Municipal","County0":"Texas County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-101.507782,36.68507004]}},{"properties":{"Total Enpl":19228.0,"State0":"IN","Landing Fa":"LAF","id":"a61zr1h6tp8r","Name0":"Purdue University","County0":"Tippecanoe County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-86.93689728,40.41231537]}},{"properties":{"Total Enpl":39411.0,"State0":"TX","Landing Fa":"SJT","id":"a61zr185o9za","Name0":"San Angelo Regional/Mathis Field","County0":"Tom Green County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-100.4963074,31.35774994]}},{"properties":{"Total Enpl":101945.0,"State0":"NY","Landing Fa":"ITH","id":"a61zr169nnkr","Name0":"Tompkins County","County0":"Tompkins County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-76.45844269,42.49102783]}},{"properties":{"Total Enpl":3305073.0,"State0":"TX","Landing Fa":"AUS","id":"a61zr1fkld70","Name0":"Austin-Bergstrom International","County0":"Travis County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-97.66986847,30.19453239]}},{"properties":{"Total Enpl":40274.0,"State0":"OH","Landing Fa":"YNG","id":"a61zr15xel96","Name0":"Youngstown-Warren Regional","County0":"Trumbull County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-80.67910004,41.26073456]}},{"properties":{"Total Enpl":10255.0,"State0":"CA","Landing Fa":"VIS","id":"a61zr12wkyx2","Name0":"Visalia Municipal","County0":"Tulare County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-119.3928909,36.31866837]}},{"properties":{"Total Enpl":1711539.0,"State0":"OK","Landing Fa":"TUL","id":"a61zr14zezen","Name0":"Tulsa International","County0":"Tulsa County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-95.88824463,36.19837189]}},{"properties":{"Total Enpl":321.0,"State0":"CA","Landing Fa":"O22","id":"a61zr1gb53ku","Name0":"Columbia","County0":"Tuolumne County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-120.4145584,38.03042221]}},{"properties":{"Total Enpl":1491.0,"State0":"AL","Landing Fa":"TCL","id":"a61zr19hz0jf","Name0":"Tuscaloosa Municipal","County0":"Tuscaloosa County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-87.61140442,33.22062683]}},{"properties":{"Total Enpl":36425.0,"State0":"ID","Landing Fa":"TWF","id":"a61zr1b3swhk","Name0":"Joslin Field-Magic Valley Regional","County0":"Twin Falls County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-114.4877319,42.48180389]}},{"properties":{"Total Enpl":3694.0,"State0":"UT","Landing Fa":"VEL","id":"a61zr1dic1cn","Name0":"Vernal","County0":"Uintah County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-109.5099182,40.44090271]}},{"properties":{"Total Enpl":14019.0,"State0":"OR","Landing Fa":"PDT","id":"a61zr1bra6rq","Name0":"Eastern Oregon Regional At Pendleton","County0":"Umatilla County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-118.8414459,45.69505692]}},{"properties":{"Total Enpl":1519.0,"State0":"AR","Landing Fa":"ELD","id":"a61zr1icazt8","Name0":"South Arkansas Regional At Goodwin Field","County0":"Union County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-92.81325531,33.22086334]}},{"properties":{"Total Enpl":447.0,"State0":"OR","Landing Fa":"LGD","id":"a61zr15wywzz","Name0":"La Grande/Union County","County0":"Union County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-118.0071106,45.29021072]}},{"properties":{"Total Enpl":21536.0,"State0":"AK","Landing Fa":"VDZ","id":"a61zr1a6oexy","Name0":"Valdez","County0":"Valdez-Cordova Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-146.2483673,61.13394928]}},{"properties":{"Total Enpl":20648.0,"State0":"AK","Landing Fa":"CDV","id":"a61zr18sw9fz","Name0":"Merle K. (Mudhole) Smith","County0":"Valdez-Cordova Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-145.4776459,60.49183273]}},{"properties":{"Total Enpl":455.0,"State0":"AK","Landing Fa":"19AK","id":"a61zr1388eah","Name0":"Icy Bay","County0":"Valdez-Cordova Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-141.6617737,59.96901703]}},{"properties":{"Total Enpl":451.0,"State0":"AK","Landing Fa":"CXC","id":"a61zr19dlhbs","Name0":"Chitina","County0":"Valdez-Cordova Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-144.4270935,61.58285904]}},{"properties":{"Total Enpl":708.0,"State0":"AK","Landing Fa":"GKN","id":"a61zr155ufwr","Name0":"Gulkana","County0":"Valdez-Cordova Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-145.4566345,62.15488815]}},{"properties":{"Total Enpl":319.0,"State0":"ID","Landing Fa":"MYL","id":"a61zr1at0t2r","Name0":"McCall","County0":"Valley County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-116.1017532,44.88879395]}},{"properties":{"Total Enpl":2256.0,"State0":"MT","Landing Fa":"GGW","id":"a61zr1g21m0j","Name0":"Wokal Field/Glasgow International","County0":"Valley County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-106.6148224,48.21246338]}},{"properties":{"Total Enpl":257966.0,"State0":"IN","Landing Fa":"EVV","id":"a61zr149cguh","Name0":"Evansville Regional","County0":"Vanderburgh County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-87.53062439,38.03799057]}},{"properties":{"Total Enpl":7077.0,"State0":"PA","Landing Fa":"FKL","id":"a61zr1c5erxj","Name0":"Venango Regional","County0":"Venango County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-79.86035919,41.37787247]}},{"properties":{"Total Enpl":50722.0,"State0":"CA","Landing Fa":"OXR","id":"a61zr13sf84q","Name0":"Oxnard","County0":"Ventura County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-119.2072144,34.20080185]}},{"properties":{"Total Enpl":2351.0,"State0":"CA","Landing Fa":"NTD","id":"a61zr15ik4k7","Name0":"Point Mugu Naval Air Station","County0":"Ventura County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-119.1209412,34.12028503]}},{"properties":{"Total Enpl":2240.0,"State0":"LA","Landing Fa":"0R3","id":"a61zr1d4vzkx","Name0":"Abbeville Chris Crusta Memorial","County0":"Vermilion Parish"},"type":"Feature","geometry":{"type":"Point","coordinates":[-92.08415222,29.97576141]}},{"properties":{"Total Enpl":20016.0,"State0":"TX","Landing Fa":"VCT","id":"a61zr1eaj5ro","Name0":"Victoria Regional","County0":"Victoria County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-96.91848755,28.85255623]}},{"properties":{"Total Enpl":27108.0,"State0":"PR","Landing Fa":"VQS","id":"a61zr18tro3e","Name0":"Antonio Rivera Rodriguez","County0":"Vieques Municipio"},"type":"Feature","geometry":{"type":"Point","coordinates":[-65.49182892,18.13551903]}},{"properties":{"Total Enpl":282.0,"State0":"IN","Landing Fa":"3I3","id":"a61zr1f27t6e","Name0":"Sky King","County0":"Vigo County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-87.37734985,39.54778671]}},{"properties":{"Total Enpl":3949.0,"State0":"IN","Landing Fa":"HUF","id":"a61zr1fzhma5","Name0":"Terre Haute International-Hulman Field","County0":"Vigo County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-87.30756378,39.45146179]}},{"properties":{"Total Enpl":672.0,"State0":"WI","Landing Fa":"EGV","id":"a61zr1c8j023","Name0":"Eagle River Union","County0":"Vilas County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-89.26906586,45.93179703]}},{"properties":{"Total Enpl":339.0,"State0":"WI","Landing Fa":"ARV","id":"a61zr1emizhj","Name0":"Lakeland/Noble F. Lee Memorial Field","County0":"Vilas County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-89.73094177,45.92792511]}},{"properties":{"Total Enpl":275231.0,"State0":"FL","Landing Fa":"DAB","id":"a61zr1hdciab","Name0":"Daytona Beach International","County0":"Volusia County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.05805206,29.17991638]}},{"properties":{"Total Enpl":703.0,"State0":"FL","Landing Fa":"EVB","id":"a61zr13ry1x9","Name0":"New Smyrna Beach Municipal","County0":"Volusia County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-80.94836426,29.05580521]}},{"properties":{"Total Enpl":2864.0,"State0":"AK","Landing Fa":"SCM","id":"a61zr1a1cg7m","Name0":"Scammon Bay","County0":"Wade Hampton Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-165.5737457,61.84453964]}},{"properties":{"Total Enpl":4404.0,"State0":"AK","Landing Fa":"VAK","id":"a61zr191u6y8","Name0":"Chevak","County0":"Wade Hampton Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-165.583725,61.53363419]}},{"properties":{"Total Enpl":5523.0,"State0":"AK","Landing Fa":"MOU","id":"a61zr1h9wxia","Name0":"Mountain Village","County0":"Wade Hampton Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-163.6820526,62.09536362]}},{"properties":{"Total Enpl":8281.0,"State0":"AK","Landing Fa":"KSM","id":"a61zr1dc3zea","Name0":"Saint Mary's","County0":"Wade Hampton Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-163.3021088,62.06048584]}},{"properties":{"Total Enpl":1376.0,"State0":"AK","Landing Fa":"SXP","id":"a61zr18hnqg2","Name0":"Sheldon Point","County0":"Wade Hampton Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-164.8477783,62.5205574]}},{"properties":{"Total Enpl":2470.0,"State0":"AK","Landing Fa":"RSH","id":"a61zr1hpn8pi","Name0":"Russian Mission","County0":"Wade Hampton Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-161.3194733,61.77967453]}},{"properties":{"Total Enpl":2662.0,"State0":"AK","Landing Fa":"MLL","id":"a61zr12801tk","Name0":"Marshall","County0":"Wade Hampton Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-162.069046,61.86592102]}},{"properties":{"Total Enpl":3735.0,"State0":"AK","Landing Fa":"AUK","id":"a61zr1cx48zn","Name0":"Alakanuk","County0":"Wade Hampton Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-164.6599274,62.68004608]}},{"properties":{"Total Enpl":6780.0,"State0":"AK","Landing Fa":"ENM","id":"a61zr1gm77d8","Name0":"Emmonak","County0":"Wade Hampton Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-164.4910431,62.78518677]}},{"properties":{"Total Enpl":5319.0,"State0":"AK","Landing Fa":"HPB","id":"a61zr15gj9hj","Name0":"Hooper Bay","County0":"Wade Hampton Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-166.1467743,61.52418137]}},{"properties":{"Total Enpl":4703.0,"State0":"AK","Landing Fa":"0AK","id":"a61zr1dt3cob","Name0":"Pilot Station","County0":"Wade Hampton Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-162.8929291,61.93396378]}},{"properties":{"Total Enpl":4394220.0,"State0":"NC","Landing Fa":"RDU","id":"a61zr1bheil3","Name0":"Raleigh-Durham International","County0":"Wake County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-78.78747559,35.87763977]}},{"properties":{"Total Enpl":312.0,"State0":"ME","Landing Fa":"57B","id":"a61zr16zu5o9","Name0":"Islesboro","County0":"Waldo County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-68.9105835,44.30285645]}},{"properties":{"Total Enpl":31166.0,"State0":"WA","Landing Fa":"ALW","id":"a61zr155panz","Name0":"Walla Walla Regional","County0":"Walla Walla County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2880402,46.09456253]}},{"properties":{"Total Enpl":1317.0,"State0":"IA","Landing Fa":"OTM","id":"a61zr15vriif","Name0":"Ottumwa Industrial","County0":"Wapello County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-92.44793701,41.1065979]}},{"properties":{"Total Enpl":74333.0,"State0":"ND","Landing Fa":"MOT","id":"a61zr1hgzhlo","Name0":"Minot International","County0":"Ward County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-101.2803345,48.25937653]}},{"properties":{"Total Enpl":311.0,"State0":"KY","Landing Fa":"BWG","id":"a61zr1dqv7yk","Name0":"Bowling Green-Warren County Regional","County0":"Warren County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-86.41967773,36.96451569]}},{"properties":{"Total Enpl":2747.0,"State0":"WY","Landing Fa":"WRL","id":"a61zr1eoinlq","Name0":"Worland Municipal","County0":"Washakie County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-107.9508286,43.9657135]}},{"properties":{"Total Enpl":27050.0,"State0":"MD","Landing Fa":"HGR","id":"a61zr1d1aoev","Name0":"Hagerstown Regional-Richard A. Henson Field","County0":"Washington County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-77.72949982,39.70794296]}},{"properties":{"Total Enpl":33707.0,"State0":"UT","Landing Fa":"SGU","id":"a61zr17mlni7","Name0":"Saint George Municipal","County0":"Washington County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-113.5930557,37.0905838]}},{"properties":{"Total Enpl":11190.0,"State0":"RI","Landing Fa":"BID","id":"a61zr1hxhqbw","Name0":"Block Island State","County0":"Washington County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-71.57784271,41.16811752]}},{"properties":{"Total Enpl":12142.0,"State0":"RI","Landing Fa":"WST","id":"a61zr1eq3z4f","Name0":"Westerly State","County0":"Washington County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-71.80337524,41.349617]}},{"properties":{"Total Enpl":20213.0,"State0":"AR","Landing Fa":"FYV","id":"a61zr19errxh","Name0":"Drake Field","County0":"Washington County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-94.1700592,36.00509644]}},{"properties":{"Total Enpl":13265.0,"State0":"MS","Landing Fa":"GLH","id":"a61zr1ct1mng","Name0":"Mid Delta Regional","County0":"Washington County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-90.98561096,33.48287964]}},{"properties":{"Total Enpl":2526.0,"State0":"AR","Landing Fa":"ASG","id":"a61zr160s0yq","Name0":"Springdale Municipal","County0":"Washington County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-94.11925507,36.17641068]}},{"properties":{"Total Enpl":2912801.0,"State0":"NV","Landing Fa":"RNO","id":"a61zr12yp43k","Name0":"Reno/Tahoe International","County0":"Washoe County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-119.7680664,39.49857712]}},{"properties":{"Total Enpl":442.0,"State0":"WI","Landing Fa":"UES","id":"a61zr15bfioa","Name0":"Waukesha County","County0":"Waukesha County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-88.23705292,43.04102707]}},{"properties":{"Total Enpl":16982496.0,"State0":"MI","Landing Fa":"DTW","id":"a61zr1e7xk58","Name0":"Detroit Metropolitan Wayne County","County0":"Wayne County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-83.34883881,42.21205902]}},{"properties":{"Total Enpl":3046.0,"State0":"MI","Landing Fa":"YIP","id":"a61zr13hrtpg","Name0":"Willow Run","County0":"Wayne County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-83.53041077,42.23792648]}},{"properties":{"Total Enpl":62609.0,"State0":"WV","Landing Fa":"HTS","id":"a61zr16fs7g8","Name0":"Tri-State/Milton J. Ferguson Field","County0":"Wayne County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-82.55802917,38.36666489]}},{"properties":{"Total Enpl":937.0,"State0":"NC","Landing Fa":"GSB","id":"a61zr13u9jm9","Name0":"Seymour Johnson Air Force Base","County0":"Wayne County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-77.96058655,35.33938217]}},{"properties":{"Total Enpl":222571.0,"State0":"MI","Landing Fa":"DET","id":"a61zr1cyohen","Name0":"Detroit City","County0":"Wayne County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-83.00986481,42.40919495]}},{"properties":{"Total Enpl":87739.0,"State0":"TX","Landing Fa":"LRD","id":"a61zr1b3jkst","Name0":"Laredo International","County0":"Webb County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-99.46154022,27.54373932]}},{"properties":{"Total Enpl":11801.0,"State0":"IA","Landing Fa":"FOD","id":"a61zr1aga8oo","Name0":"Fort Dodge Regional","County0":"Webster County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-94.19255066,42.55145645]}},{"properties":{"Total Enpl":508011.0,"State0":"NY","Landing Fa":"HPN","id":"a61zr1cq64g0","Name0":"Westchester County","County0":"Westchester County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-73.70757294,41.06695938]}},{"properties":{"Total Enpl":27929.0,"State0":"PA","Landing Fa":"LBE","id":"a61zr160g3q3","Name0":"Arnold Palmer Regional","County0":"Westmoreland County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-79.40480042,40.27593994]}},{"properties":{"Total Enpl":97406.0,"State0":"WA","Landing Fa":"BLI","id":"a61zr15tvh3g","Name0":"Bellingham International","County0":"Whatcom County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-122.537529,48.79275131]}},{"properties":{"Total Enpl":1763.0,"State0":"NV","Landing Fa":"ELY","id":"a61zr1bd1l2g","Name0":"Ely Airport/Yelland Field","County0":"White Pine County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-114.8418884,39.29969406]}},{"properties":{"Total Enpl":34887.0,"State0":"WA","Landing Fa":"PUW","id":"a61zr1gmm6kc","Name0":"Pullman/Moscow Regional","County0":"Whitman County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-117.109581,46.74386215]}},{"properties":{"Total Enpl":55903.0,"State0":"TX","Landing Fa":"SPS","id":"a61zr1gkvgb5","Name0":"Sheppard Air Force Base/Wichita Falls Municipal","County0":"Wichita County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-98.49188995,33.98879623]}},{"properties":{"Total Enpl":73124.0,"State0":"MD","Landing Fa":"SBY","id":"a61zr1fvhpkc","Name0":"Salisbury-Ocean City Wicomico Regional","County0":"Wicomico County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-75.51028442,38.34052658]}},{"properties":{"Total Enpl":5613.0,"State0":"ND","Landing Fa":"ISN","id":"a61zr1cd2fnv","Name0":"Sloulin Field/International","County0":"Williams County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-103.6423492,48.17794037]}},{"properties":{"Total Enpl":10108.0,"State0":"IL","Landing Fa":"MWA","id":"a61zr1865k7i","Name0":"Williamson County Regional","County0":"Williamson County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-89.01159668,37.75313568]}},{"properties":{"Total Enpl":752.0,"State0":"CT","Landing Fa":"IJD","id":"a61zr1hxtcvq","Name0":"Windham","County0":"Windham County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-72.18023682,41.74404144]}},{"properties":{"Total Enpl":4382.0,"State0":"WI","Landing Fa":"OSH","id":"a61zr1hkxq0w","Name0":"Wittman Regional","County0":"Winnebago County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-88.55706024,43.98436737]}},{"properties":{"Total Enpl":32608.0,"State0":"IL","Landing Fa":"RFD","id":"a61zr1dq601y","Name0":"Greater Rockford","County0":"Winnebago County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-89.09721375,42.19536209]}},{"properties":{"Total Enpl":25677.0,"State0":"WV","Landing Fa":"PKB","id":"a61zr1elmawo","Name0":"Wood County Airport-Gill Robb Wilson Field","County0":"Wood County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-81.43920135,39.34510422]}},{"properties":{"Total Enpl":89563.0,"State0":"IA","Landing Fa":"SUX","id":"a61zr1caiup0","Name0":"Sioux Gateway","County0":"Woodbury County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-96.3843689,42.40260315]}},{"properties":{"Total Enpl":24758.0,"State0":"MA","Landing Fa":"ORH","id":"a61zr1e9usxg","Name0":"Worcester Regional","County0":"Worcester County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-71.87570953,42.2673378]}},{"properties":{"Total Enpl":21047.0,"State0":"AK","Landing Fa":"PSG","id":"a61zr14sns34","Name0":"Petersburg James A. Johnson","County0":"Wrangell-Petersburg Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-132.945282,56.801651]}},{"properties":{"Total Enpl":3466.0,"State0":"AK","Landing Fa":"KAE","id":"a61zr198gsq5","Name0":"Kake","County0":"Wrangell-Petersburg Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-133.9456177,56.97299576]}},{"properties":{"Total Enpl":13895.0,"State0":"AK","Landing Fa":"WRG","id":"a61zr1258wr3","Name0":"Wrangell","County0":"Wrangell-Petersburg Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-132.3698273,56.48432541]}},{"properties":{"Total Enpl":89569.0,"State0":"WA","Landing Fa":"YKM","id":"a61zr1bad24u","Name0":"Yakima Air Terminal/McAllister Field","County0":"Yakima County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-120.5440598,46.56816864]}},{"properties":{"Total Enpl":14702.0,"State0":"AK","Landing Fa":"YAK","id":"a61zr1i8i5rz","Name0":"Yakutat","County0":"Yakutat Borough"},"type":"Feature","geometry":{"type":"Point","coordinates":[-139.6602325,59.50336075]}},{"properties":{"Total Enpl":1311.0,"State0":"SD","Landing Fa":"YKN","id":"a61zr1dj8n38","Name0":"Chan Gurney Municipal","County0":"Yankton County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-97.38594818,42.91669464]}},{"properties":{"Total Enpl":5543.0,"State0":"AZ","Landing Fa":"PRC","id":"a61zr122bn7r","Name0":"Ernest A. Love Field","County0":"Yavapai County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-112.4195862,34.65447235]}},{"properties":{"Total Enpl":673.0,"State0":"AZ","Landing Fa":"SEZ","id":"a61zr15akact","Name0":"Sedona","County0":"Yavapai County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-111.7884598,34.848629]}},{"properties":{"Total Enpl":338769.0,"State0":"MT","Landing Fa":"BIL","id":"a61zr18gjj9f","Name0":"Billings Logan International","County0":"Yellowstone County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-108.5428619,45.80766296]}},{"properties":{"Total Enpl":441.0,"State0":"CA","Landing Fa":"0O5","id":"a61zr196s5dc","Name0":"University","County0":"Yolo County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-121.7864914,38.53146362]}},{"properties":{"Total Enpl":468.0,"State0":"PA","Landing Fa":"CXY","id":"a61zr152bs8x","Name0":"Capital City","County0":"York County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-76.85147095,40.2171402]}},{"properties":{"Total Enpl":788.0,"State0":"AK","Landing Fa":"SHX","id":"a61zr16tve9i","Name0":"Shageluk","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-159.5690613,62.69511795]}},{"properties":{"Total Enpl":4954.0,"State0":"AK","Landing Fa":"MCG","id":"a61zr1f6hrfo","Name0":"McGrath","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-155.6057587,62.95287323]}},{"properties":{"Total Enpl":1095.0,"State0":"AK","Landing Fa":"HUS","id":"a61zr14t2ymm","Name0":"Hughes","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-154.2631836,66.04112244]}},{"properties":{"Total Enpl":1312.0,"State0":"AK","Landing Fa":"CIK","id":"a61zr19ehcm4","Name0":"Chalkyitsik","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-143.7359467,66.64968872]}},{"properties":{"Total Enpl":465.0,"State0":"AK","Landing Fa":"CRC","id":"a61zr17pyb44","Name0":"Circle City","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-144.0758057,65.83049011]}},{"properties":{"Total Enpl":254.0,"State0":"AK","Landing Fa":"MHM","id":"a61zr14smr48","Name0":"Minchumina","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-152.3006744,63.88056564]}},{"properties":{"Total Enpl":356.0,"State0":"AK","Landing Fa":"5NI","id":"a61zr132zt1s","Name0":"Nikolai","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-154.3639679,63.01744843]}},{"properties":{"Total Enpl":3443.0,"State0":"AK","Landing Fa":"HSL","id":"a61zr122fb60","Name0":"Huslia","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-156.3874969,65.70055389]}},{"properties":{"Total Enpl":3529.0,"State0":"AK","Landing Fa":"NUL","id":"a61zr1a8rl28","Name0":"Nulato","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-158.0731964,64.72982025]}},{"properties":{"Total Enpl":2192.0,"State0":"AK","Landing Fa":"KAL","id":"a61zr1281y60","Name0":"Kaltag","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-158.7441406,64.32572174]}},{"properties":{"Total Enpl":4653.0,"State0":"AK","Landing Fa":"TAL","id":"a61zr1hen3ta","Name0":"Ralph M. Calhoun Memorial","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-152.1093903,65.1743927]}},{"properties":{"Total Enpl":393.0,"State0":"AK","Landing Fa":"51Z","id":"a61zr19wrcfz","Name0":"Minto","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-149.3699646,65.14370728]}},{"properties":{"Total Enpl":1087.0,"State0":"AK","Landing Fa":"RMP","id":"a61zr15flz61","Name0":"Rampart","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-150.142807,65.50786591]}},{"properties":{"Total Enpl":2212.0,"State0":"AK","Landing Fa":"SVS","id":"a61zr1gdfxaa","Name0":"Stevens Village","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-149.0959167,66.00900269]}},{"properties":{"Total Enpl":2676.0,"State0":"AK","Landing Fa":"WBQ","id":"a61zr175m5yp","Name0":"Beaver","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-147.4012146,66.36154938]}},{"properties":{"Total Enpl":994.0,"State0":"AK","Landing Fa":"KYU","id":"a61zr1cw6i3f","Name0":"Koyukuk","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-157.7158356,64.87714386]}},{"properties":{"Total Enpl":11392.0,"State0":"AK","Landing Fa":"FYU","id":"a61zr13f1ym0","Name0":"Fort Yukon","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-145.250412,66.57148743]}},{"properties":{"Total Enpl":2274.0,"State0":"AK","Landing Fa":"VEE","id":"a61zr1haesc1","Name0":"Venetie","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-146.4137726,67.02269745]}},{"properties":{"Total Enpl":1510.0,"State0":"AK","Landing Fa":"4Z4","id":"a61zr16w7n6c","Name0":"Holy Cross","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-159.7749481,62.18829727]}},{"properties":{"Total Enpl":2296.0,"State0":"AK","Landing Fa":"ARC","id":"a61zr1cy2fju","Name0":"Arctic Village","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-145.5761108,68.11608124]}},{"properties":{"Total Enpl":631.0,"State0":"AK","Landing Fa":"CXF","id":"a61zr127y0on","Name0":"Coldfoot","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-150.2065735,67.25163269]}},{"properties":{"Total Enpl":2419.0,"State0":"AK","Landing Fa":"PPC","id":"a61zr1akik4v","Name0":"Prospect Creek","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-150.6437988,66.81288147]}},{"properties":{"Total Enpl":1901.0,"State0":"AK","Landing Fa":"6A8","id":"a61zr1e1fcmt","Name0":"New Allakaket","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-152.6222229,66.55194092]}},{"properties":{"Total Enpl":3900.0,"State0":"AK","Landing Fa":"BTT","id":"a61zr1cya9cg","Name0":"Bettles","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-151.5280609,66.9152832]}},{"properties":{"Total Enpl":1941.0,"State0":"AK","Landing Fa":"RBY","id":"a61zr1i28g2a","Name0":"Ruby","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-155.4698944,64.72721863]}},{"properties":{"Total Enpl":10027.0,"State0":"AK","Landing Fa":"GAL","id":"a61zr1h04uzs","Name0":"Edward G. Pitka Sr.","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-156.9374237,64.73617554]}},{"properties":{"Total Enpl":1095.0,"State0":"AK","Landing Fa":"KGX","id":"a61zr1gri7pf","Name0":"Grayling","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-160.0649109,62.89456177]}},{"properties":{"Total Enpl":649.0,"State0":"AK","Landing Fa":"ANV","id":"a61zr156qg14","Name0":"Anvik","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-160.1898956,62.64858246]}},{"properties":{"Total Enpl":744.0,"State0":"AK","Landing Fa":"Z91","id":"a61zr17rkrh0","Name0":"Birch Creek","County0":"Yukon-Koyukuk Census Area"},"type":"Feature","geometry":{"type":"Point","coordinates":[-145.8240356,66.27399445]}},{"properties":{"Total Enpl":64078.0,"State0":"AZ","Landing Fa":"YUM","id":"a61zr1huo6xg","Name0":"Yuma Marine Corps Air Station/Yuma International","County0":"Yuma County"},"type":"Feature","geometry":{"type":"Point","coordinates":[-114.6059723,32.65658188]}}],"is_raster":false,"name":"Department of Transportation (DOT) Bureau of Transportation Statistics, United States (USA) Airport Locations, USA, 2001","state":"complete","short_classification":"Y","published":"2001-01-01T12:00:00Z","description":"\tThis dataset shows airports in the United States, Puerto Rico and the U.S. Virgin Islands. The data were derived from an extract of The Public- Use Airports database of the National Transportation Atlas Databases-2001 (NTAD-2001), published by the Bureau of Transportation Statistics, Department of Transportation. This dataset was released in October 2001 and was found on-line at the National Atlas, www.nationalatlas.gov in Shape file format. This point data is intended for use within the United States, including Puerto Rico and the U.S. Virgin Islands. This data may be used for geographic display and analysis at the national level, and for large regional areas.\n\nMetadata: http://www.nationalatlas.gov/metadata/airprtx020.faq.html\nOnline: www.nationalatlas.gov","stats":{"Total Enpl":{"max":38136866.0,"mean":756726.649278579,"variance":10208384264431.3,"stdev":3195056.22242103,"median":8220.0,"min":250.0}},"is_temporal":false,"pagination":{"sort":null,"start":0,"limit":1000000,"total":901},"author":{"metadata":"http://www.nationalatlas.gov/metadata/airprtx020.faq.html","contact_name":"","url":"http://www.nationalatlas.gov","contact_address":"","contact_phone":"","source":"Department of Transportation (DOT) Bureau of Transportation Statistics"},"source":"http://www.nationalatlas.gov","data_type":"Dataset","url_type":null,"permissions":[{"group_id":"everyone","permissions":{"download":true,"view":true}}],"classification":null,"tags":"airport,infrastructure,transportation,usa","id":10,"stream_id":10,"contributor":{"name":"data","url":"http://geocommons.com/users/2"}} -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | pod 'Mapbox-iOS-SDK' 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MapboxTableViewDemo 2 | 3 | Reference implementation of reuse of `UITableViewCell` objects containing Mapbox GL-based [Mapbox iOS SDK](https://www.mapbox.com/ios-sdk/) maps. 4 | 5 | ## Install 6 | 7 | 1. Get [CocoaPods](http://cocoapods.org) 8 | 1. `pod install` 9 | 1. `open MapboxTableViewDemo.xcworkspace` 10 | 1. Build & Run 11 | 12 | ## Notes 13 | 14 | - Creates a `UITableView` with 100 rows. 15 | - Only creates 4-6 `MGLMapView` Open GL-backed map views (depending on device size). 16 | - Loads a different center coordinate for each of the 100 rows. 17 | - Performant on device (tested with an iPhone 5s running iOS 8.4.1). 18 | - Data courtesy [`geoiq/gc_data`](https://github.com/geoiq/gc_data/blob/master/datasets/10.geojson). 19 | 20 | [Video](./video.mp4) 21 | 22 | ![](./screenshot.png) 23 | 24 | ![](./sample.png) 25 | -------------------------------------------------------------------------------- /sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/MapboxTableViewDemo/159d08db83c28b681c4bb87a93228f9203a0499f/sample.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/MapboxTableViewDemo/159d08db83c28b681c4bb87a93228f9203a0499f/screenshot.png -------------------------------------------------------------------------------- /video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/MapboxTableViewDemo/159d08db83c28b681c4bb87a93228f9203a0499f/video.mp4 --------------------------------------------------------------------------------